forked from mixpanel/mixpanel-iphone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mixpanel.podspec
22 lines (21 loc) · 989 Bytes
/
Mixpanel.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Mixpanel'
s.version = '2.7.3'
s.summary = 'iPhone tracking library for Mixpanel Analytics'
s.homepage = 'https://mixpanel.com'
s.license = 'Apache License, Version 2.0'
s.author = { 'Mixpanel, Inc' => '[email protected]' }
s.platform = :ios, '6.0'
s.source = { :git => 'https://github.com/mixpanel/mixpanel-iphone.git', :tag => "v#{s.version}" }
s.source_files = 'Mixpanel/**/*.{m,h}'
s.private_header_files = 'Mixpanel/Library/**/*.h'
s.resources = ['Mixpanel/**/*.{png,storyboard}']
s.frameworks = 'UIKit', 'Foundation', 'SystemConfiguration', 'CoreTelephony', 'Accelerate', 'CoreGraphics', 'QuartzCore'
s.libraries = 'icucore', 'MPCategoryHelpers'
s.requires_arc = true
s.subspec 'MPCategoryHelpers' do |ss|
ss.preserve_paths = 'Mixpanel/MPCategoryHelpers.h'
ss.vendored_libraries = 'Mixpanel/libMPCategoryHelpers.a'
ss.libraries = 'MPCategoryHelpers'
end
end