-
Notifications
You must be signed in to change notification settings - Fork 34
/
SwrveSDK.podspec
28 lines (24 loc) · 1.28 KB
/
SwrveSDK.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
Pod::Spec.new do |s|
s.name = "SwrveSDK"
s.version = "10.1.0"
s.summary = "iOS SDK for Swrve."
s.homepage = "http://www.swrve.com"
s.license = { "type" => "Apache License, Version 2.0", "file" => s.name.to_s + "/LICENSE" }
s.authors = "Swrve Mobile Inc or its licensors"
s.source = { :git => "https://github.com/Swrve/swrve-ios-sdk.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Swrve_Inc'
s.documentation_url = 'https://docs.swrve.com/developer-documentation/integration/ios/'
s.platforms = { :ios => "12.0", :tvos => "12.0" }
s.requires_arc = true
s.swift_versions = "5.0"
s.source_files = 'SwrveSDK/SDK/**/*.{m,h}', 'SwrveSDKSwift/**/*.{swift}'
s.public_header_files = 'SwrveSDK/SDK/**/*.h'
s.resource_bundles = { 'SwrveSDK' => ['SwrveSDK/SDK/Resources/**/*.*'] }
s.dependency 'SwrveSDKCommon', '10.1.0'
s.dependency 'SDWebImage', '~> 5.0'
s.frameworks = 'UIKit', 'QuartzCore', 'CFNetwork', 'StoreKit', 'Security', 'AVFoundation', 'CoreText'
s.ios.frameworks = 'MessageUI', 'CoreTelephony'
# weak frameworks mark them as optional in xcode allowing for backwards compatibility with iOS7 and iOS8
s.ios.weak_frameworks = 'UserNotifications'
s.library = 'sqlite3'
end