forked from apptentive/apptentive-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapptentive-ios.podspec
26 lines (26 loc) · 1.28 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.version = '2.1.0'
s.license = 'BSD'
s.summary = 'Apptentive Customer Communications SDK.'
s.homepage = 'https://www.apptentive.com/'
s.authors = { "Andrew Wooster" => "[email protected]",
"Peter Kamb" => "[email protected]",
"Frank Schmitt" => "[email protected]" }
s.source = { :git => 'https://github.com/apptentive/apptentive-ios.git', :tag => "v#{s.version}" }
s.platform = :ios, '7.0'
s.source_files = 'ApptentiveConnect/source/**/*.{h,m}'
s.requires_arc = true
s.frameworks = 'AVFoundation', 'CoreGraphics', 'Foundation', 'ImageIO', 'MobileCoreServices', 'QuartzCore', 'SystemConfiguration', 'UIKit', 'CoreData'
s.resource_bundle = { 'ApptentiveResources' => [
'ApptentiveConnect/source/Model/*.xcdatamodeld',
'ApptentiveConnect/source/Model/*.xcmappingmodel',
'ApptentiveConnect/resources/localization/*.lproj',
'ApptentiveConnect/resources/images/**/*.*',
'ApptentiveConnect/resources/Apptentive.storyboard',
'ApptentiveConnect/resources/CocoaPodsResources/Info.plist'
] }
s.weak_frameworks = 'StoreKit', 'CoreTelephony'
s.prefix_header_contents = '#import "ATLog.h"'
s.xcconfig = { "GCC_PREPROCESSOR_DEFINITIONS" => "AT_LOGGING_LEVEL_ERROR=1" }
end