-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathZaloSDK.podspec
41 lines (32 loc) · 1.13 KB
/
ZaloSDK.podspec
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Be sure to run `pod spec lint ZaloSDK.podspec' to ensure this is a
# valid spec before submitting.
# pod lib lint
# pod trunk push ZaloSDK.podspec
#
Pod::Spec.new do |s|
s.name = 'ZaloSDK'
s.version = '4.1.0803'
s.summary = 'Zalo SDK'
s.description = <<-DESC
Zalo software development kit for iOS
Document: http://developers.zalo.me/docs/sdk/ios-sdk-9
DESC
s.homepage = 'http://developers.zalo.me/docs/sdk/ios-sdk-9'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Liem Vo' => '[email protected]' }
s.source = { :git => 'https://github.com/VNG-Zalo/ZaloSDK-iOS.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.subspec 'Core' do |cs|
cs.ios.vendored_frameworks = 'ZaloSDK/Frameworks/ZaloSDKCoreKit.xcframework'
end
s.subspec 'Main' do |cs|
cs.ios.vendored_frameworks = 'ZaloSDK/Frameworks/ZaloSDK.xcframework'
cs.dependency 'ZaloSDK/Core'
end
s.subspec 'Analytics' do |cs|
cs.ios.vendored_frameworks = 'ZaloSDK/Frameworks/ZingAnalytics.xcframework'
cs.dependency 'ZaloSDK/Core'
end
s.default_subspecs = 'Core', 'Main'
end