-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMarketo-iOS-SDK.podspec
40 lines (36 loc) · 1.51 KB
/
Marketo-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
39
40
Pod::Spec.new do |s|
s.name = "Marketo-iOS-SDK"
s.version = "0.8.6"
s.summary = "Add Marketo Mobile Engagement to your project."
s.description = <<-DESC
MarketoPod provides the following features:
* Create lead on app install
* Associate lead with user
* Track user actions
* Send push notifications
* In-app notifications
* Triggered campaigns
DESC
s.homepage = "https://github.com/Marketo/ios-sdk.git"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Copyright 2015 Marketo, Inc. All rights reserved.
LICENSE
}
s.author = { "Marketo, Adobe company" => "[email protected]" }
s.source = { :git => "https://github.com/Marketo/ios-sdk.git", :tag => s.version, :branch => 'master' }
s.source_files = 'Sources/MarketoFramework.xcframework/**/*.h'
s.platform = :ios, '12.0'
s.requires_arc = false
s.preserve_paths = 'Sources/MarketoFramework.xcframework'
s.public_header_files = 'Sources/MarketoFramework.xcframework/**/*.h'
s.vendored_frameworks = "Sources/MarketoFramework.xcframework"
s.frameworks = 'SystemConfiguration', 'Security', 'CoreTelephony'
s.library = 'sqlite3'
s.resource_bundles = {
'MKTResources' => [
'ResourcePod/**/*.{png,storyboard}'
]
}
end