-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathIterable-iOS-SDK.podspec
31 lines (23 loc) · 1 KB
/
Iterable-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
Pod::Spec.new do |s|
s.name = "Iterable-iOS-SDK"
s.module_name = "IterableSDK"
s.version = "6.5.9"
s.summary = "Iterable's official SDK for iOS"
s.description = <<-DESC
Iterable's iOS SDK integrating utility and the Iterable API
DESC
s.homepage = "https://github.com/Iterable/iterable-swift-sdk.git"
s.license = "MIT"
s.author = { "Jay Kim" => "[email protected]" }
s.platform = :ios, "12.0"
s.source = { :git => "https://github.com/Iterable/iterable-swift-sdk.git", :tag => s.version }
s.source_files = "swift-sdk/**/*.{h,m,swift}"
s.exclude_files = "swift-sdk/swiftui/**"
s.documentation_url = "https://support.iterable.com/hc/en-us/articles/360035018152-Iterable-s-iOS-SDK"
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '5.3'
}
s.swift_version = '5.3'
s.resource_bundles = {'Resources' => 'swift-sdk/Resources/**/*.{storyboard,xib,xcassets,xcdatamodeld}' }
s.header_dir = 'IterableSDK'
end