forked from dsjoerg/analytics-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Analytics.podspec
17 lines (17 loc) · 985 Bytes
/
Analytics.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "Analytics"
s.version = "0.9.8"
s.summary = "Segment.io analytics and marketing tools library for iOS."
s.homepage = "https://segment.io/libraries/ios"
s.license = { :type => "MIT", :file => "License.md" }
s.author = { "Segment.io" => "[email protected]" }
s.source = { :http => "https://s3.amazonaws.com/segmentio/releases/ios/Analytics-#{s.version}.zip",
:flatten => true }
s.platform = :ios, '6.0'
s.preserve_paths = 'Analytics.framework'
s.source_files = 'Analytics.framework/**/*.h'
s.frameworks = 'Analytics', 'Foundation', 'UIKit', 'CoreData', 'SystemConfiguration',
'QuartzCore', 'CFNetwork', 'AdSupport', 'CoreTelephony', 'Security', 'CoreGraphics'
s.libraries = 'sqlite3', 'z'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC', 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Analytics"' }
end