-
Notifications
You must be signed in to change notification settings - Fork 61
/
Leanplum-iOS-SDK.podspec
38 lines (36 loc) · 1.61 KB
/
Leanplum-iOS-SDK.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
#
# Be sure to run `pod lib lint Leanplum-SDK.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Leanplum-iOS-SDK'
version = `cat sdk-version.txt`
s.version = version
s.summary = 'Mobile Marketing Platform. Integrated. ROI Engine.'
s.description = <<-DESC
Leanplum’s integrated solution delivers meaningful engagement across messaging and the in-app
experience. We offer Messaging, Automation, App Editing, Personalization, A/B Testing, and
Analytics.
DESC
s.homepage = 'https://www.leanplum.com'
s.license = { :type => 'Commercial', :text => 'See https://www.leanplum.com/tos' }
s.author = { 'Leanplum' => '[email protected]' }
s.social_media_url = 'https://twitter.com/leanplum'
s.requires_arc = true
s.source = { :git => 'https://github.com/Leanplum/Leanplum-iOS-SDK.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.frameworks = 'CFNetwork', 'Foundation', 'Security', 'SystemConfiguration', 'UIKit'
s.weak_frameworks = 'AdSupport', 'StoreKit'
s.library = 'sqlite3'
s.documentation_url = 'https://docs.leanplum.com/'
s.source_files = 'LeanplumSDK/LeanplumSDK/Classes/**/*', 'LeanplumSDK/LeanplumSDK/ClassesSwift/**/*'
s.module_name = 'Leanplum'
s.resource_bundle = {
'Leanplum-iOS-SDK' => 'LeanplumSDK/LeanplumSDKBundle/Resources/**/*'
}
s.dependency 'CleverTap-iOS-SDK', '~> 7.0'
s.swift_version = '5.0'
end