-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathRCTAliyunPush.podspec
More file actions
22 lines (18 loc) · 896 Bytes
/
RCTAliyunPush.podspec
File metadata and controls
22 lines (18 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require "json"
version = JSON.parse(File.read("package.json"))["version"]
Pod::Spec.new do |spec|
spec.name = "RCTAliyunPush"
spec.version = version
spec.summary = "A short description of RCTAliyunPush."
spec.homepage = "https://github.com/a188658587/react-native-aliyun-push"
spec.license = "MIT"
spec.author = { "wwwlin" => "188658587@qq.com" }
spec.ios.deployment_target = "9.0"
spec.tvos.deployment_target = "9.0"
spec.source = { :git => 'https://github.com/a188658587/react-native-aliyun-push.git', :tag => "v#{spec.version}"}
spec.source_files = "ios/**/*.{h,m}"
spec.vendored_frameworks = "ios/libs/AlicloudUtils.framework","ios/libs/CloudPushSDK.framework","ios/libs/UTDID.framework","ios/libs/UTMini.framework"
spec.libraries = "z", "resolv", "sqlite3"
spec.requires_arc = true
spec.dependency "React"
end