forked from Iterable/iterable-swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIterable-iOS-SDK.podspec
30 lines (23 loc) · 967 Bytes
/
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
Pod::Spec.new do |s|
s.name = "Iterable-iOS-SDK"
s.module_name = "IterableSDK"
s.version = "6.4.7"
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/swift-sdk.git"
s.license = "MIT"
s.author = { "Tapash Majumder" => "[email protected]",
"Jay Kim" => "[email protected]" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/Iterable/swift-sdk.git", :tag => s.version }
s.source_files = "swift-sdk/**/*.{h,m,swift}"
s.exclude_files = "swift-sdk/swiftui/**"
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