forked from Iterable/iterable-swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIterable-iOS-SDK.podspec
More file actions
28 lines (22 loc) · 935 Bytes
/
Iterable-iOS-SDK.podspec
File metadata and controls
28 lines (22 loc) · 935 Bytes
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
Pod::Spec.new do |s|
s.name = "Iterable-iOS-SDK"
s.module_name = "IterableSDK"
s.version = "6.2.10"
s.summary = "Iterable's official SDK for iOS"
s.description = <<-DESC
iOS SDK containing a wrapper around Iterable's API, in addition
to some utility functions
DESC
s.homepage = "https://github.com/Iterable/swift-sdk.git"
s.license = "MIT"
s.author = { "Tapash Majumder" => "tapash@iterable.com",
"Jay Kim" => "jay.kim@iterable.com" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/Iterable/swift-sdk.git", :tag => s.version }
s.source_files = "swift-sdk/**/*.{h,m,swift}"
s.resource_bundles = {'Iterable-iOS-SDK' => 'swift-sdk/Resources/**/*.{storyboard,xib,xcassets}' }
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '5.2'
}
s.swift_version = '5.2'
end