-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathRNUMShare.podspec
More file actions
25 lines (23 loc) · 919 Bytes
/
RNUMShare.podspec
File metadata and controls
25 lines (23 loc) · 919 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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNUMShare"
s.version = package["version"]
s.summary = package['description']
s.author = package['author']
s.homepage = package['homepage']
s.license = package['license']
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/a289459798/react-native-umshare.git", :tag => "v#{s.version}" }
s.source_files = "ios/*.{h,m}"
s.dependency "React"
s.dependency "UMCommon", "7.3.0"
s.dependency "UMDevice", "2.0.1"
s.dependency "UMAPM", "1.4.2"
s.dependency "UMShare/UI", "6.10.2"
s.dependency 'UMShare/Social/WeChat', "6.10.2"
s.dependency 'UMShare/Social/QQ', "6.10.2"
s.dependency 'UMShare/Social/ReducedSina', "6.10.2"
s.frameworks = 'CoreTelephony','SystemConfiguration'
s.library = 'z','sqlite3','c++'
end