forked from apptentive/apptentive-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apptentive-ios.podspec
24 lines (24 loc) · 1.47 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
Pod::Spec.new do |s|
s.name = 'apptentive-ios'
s.version = '1.5.7'
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]" }
s.source = { :git => 'https://github.com/apptentive/apptentive-ios.git', :tag => "v#{s.version}" }
s.platform = :ios, '5.0'
s.source_files = 'ApptentiveConnect/source/**/*.{h,m}','ApptentiveConnect/ext/**/*.{h,m}'
s.exclude_files = 'ApptentiveConnect/ext/PrefixedTTTAttributedLabel/**/*.*'
s.subspec 'arc-files' do |sna|
sna.requires_arc = true
sna.source_files = 'ApptentiveConnect/ext/PrefixedTTTAttributedLabel/TTTAttributedLabel/*.{h,m}'
sna.prefix_header_contents = ''
end
s.requires_arc = false
s.frameworks = 'Accelerate', 'AssetsLibrary', 'CoreGraphics', 'Foundation', 'QuartzCore', 'SystemConfiguration', 'UIKit', 'CoreData', 'CoreText'
s.resource_bundle = { 'ApptentiveResources' => ['ApptentiveConnect/source/Model/*.xcdatamodeld', 'ApptentiveConnect/xibs/**/*.*', 'ApptentiveConnect/resources/localization/*.lproj','ApptentiveConnect/art/generated/**/*.*', 'ApptentiveConnect/resources/CocoaPodsResources/Info.plist'] }
s.weak_frameworks = 'StoreKit', 'CoreTelephony'
s.prefix_header_contents = '#import "ATLog.h"'
s.xcconfig = { "GCC_PREPROCESSOR_DEFINITIONS" => "TTTATTRIBUTEDLABEL_PREFIX=AT AT_LOGGING_LEVEL_ERROR=1" }
end