forked from yun77op/react-native-weibo
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRNWeibo.podspec
More file actions
21 lines (18 loc) · 760 Bytes
/
RNWeibo.podspec
File metadata and controls
21 lines (18 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNWeibo"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.author = { package["author"]["name"] => package["author"]["email"] }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/yuanshan/react-native-weibo.git", :tag => "v#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.dependency "React-Core"
s.vendored_libraries = "ios/libWeiboSDK/libWeiboSDK.a"
s.requires_arc = true
s.frameworks = 'SystemConfiguration','CoreTelephony','WebKit'
s.library = 'sqlite3','c++','z'
end