-
Notifications
You must be signed in to change notification settings - Fork 9
/
Iterate.podspec
23 lines (22 loc) · 1.05 KB
/
Iterate.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "Iterate"
spec.version = "1.5.0"
spec.summary = "In-app user research made easy."
spec.description = <<-DESC
Iterate surveys put you directly in touch with your app users to
learn how you can change for the better.
DESC
spec.homepage = "https://iteratehq.com"
spec.screenshots = "https://github.com/iteratehq/iterate-ios/raw/main/Assets/static-banner.png?raw=true"
spec.license = { :type => "MIT" }
spec.author = { "Iterate" => "[email protected]" }
spec.platform = :ios, "12.0"
spec.source = { :git => "https://github.com/iteratehq/iterate-ios.git", :tag => "#{spec.version}" }
spec.source_files = "IterateSDK/**/*.{h,m,swift}"
spec.resource_bundles = {
'Iterate' => ["IterateSDK/**/*.{storyboard,xib,xcassets,json,imageset,png}"]
}
spec.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3']
spec.framework = "Webkit"
spec.dependency 'swift-markdown'
end