forked from apptentive/apptentive-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apptentive-ios.podspec
26 lines (26 loc) · 1.43 KB
/
apptentive-ios.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
Pod::Spec.new do |s|
s.name = 'apptentive-ios'
s.module_name = 'Apptentive'
s.version = '5.2.3'
s.license = 'BSD'
s.summary = 'Apptentive Customer Communications SDK.'
s.homepage = 'https://www.apptentive.com/'
s.authors = { 'Apptentive SDK Team' => '[email protected]' }
s.source = { :git => 'https://github.com/apptentive/apptentive-ios.git', :tag => "v#{s.version}" }
s.platform = :ios, '9.0'
s.source_files = 'Apptentive/Apptentive/**/*.{h,m}'
s.requires_arc = true
s.frameworks = 'AVFoundation', 'CoreData', 'CoreGraphics', 'Foundation', 'ImageIO', 'MobileCoreServices', 'QuartzCore', 'QuickLook', 'SystemConfiguration', 'UIKit'
s.resource_bundle = { 'ApptentiveResources' => [
'Apptentive/Apptentive/Model/*.xcdatamodeld',
'Apptentive/Apptentive/Model/*.xcmappingmodel',
'Apptentive/Apptentive/localization/*.lproj',
'Apptentive/Apptentive/Images/**/*.*',
'Apptentive/Apptentive/Apptentive.storyboard'
] }
s.weak_frameworks = 'StoreKit', 'CoreTelephony'
s.prefix_header_contents = '#import "ApptentiveLog.h"', '#import "ApptentiveAssert.h"', '#import "ApptentiveSafeCollections.h"'
s.pod_target_xcconfig = { "GCC_PREPROCESSOR_DEFINITIONS[config=Debug]" => "APPTENTIVE_DEBUG=1 APPTENTIVE_COCOAPODS=1",
"GCC_PREPROCESSOR_DEFINITIONS[config=Release]" => "APPTENTIVE_COCOAPODS=1" }
s.public_header_files = 'Apptentive/Apptentive/Apptentive.h', 'Apptentive/Apptentive/ApptentiveStyleSheet.h'
end