forked from puti94/react-native-uni
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native-uni.podspec
More file actions
26 lines (19 loc) · 938 Bytes
/
react-native-uni.podspec
File metadata and controls
26 lines (19 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-uni"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = package["author"]
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/puti94/react-native-uni.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,mm,a}"
s.dependency "React"
s.vendored_frameworks = 'ios/libs/**/*.framework'
s.resources = 'ios/Resources/**/*.{js,ttf,bundle}'
s.vendored_libraries = "ios/libs/**/*.a"
s.frameworks = "JavaScriptCore","CoreMedia","MediaPlayer","AVFoundation","AVKit","GLKit","OpenGLES","CoreText","QuartzCore","CoreGraphics","QuickLook","CoreTelephony","AssetsLibrary","CoreLocation","AddressBook"
s.library = "c++"
end