-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
54 lines (50 loc) · 1.11 KB
/
Podfile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
platform :ios, '9.0'
use_frameworks!
plugin 'cocoapods-keys', {
project: "Pakete",
target: "Pakete",
keys: [
"PaketeAPIKey",
"AdMobBannerAdUnitIDKey",
"AdMobInterstitialAdUnitIDKey",
"AdMobNativeAdUnitIDKey",
"SmoochAppTokenKey",
"MixpanelTokenKey",
"CountlyAppKey"
]
}
target 'Pakete' do
pod 'Alamofire'
pod 'RealmSwift'
pod 'SwiftyJSON'
pod 'RxSwift', '~> 3.0.0-beta.1'
pod 'RxCocoa', '~> 3.0.0-beta.1'
pod 'NSObject+Rx'
pod 'SVProgressHUD'
pod 'Smooch'
pod 'CryptoSwift'
pod 'Mixpanel'
pod 'Fabric'
pod 'Crashlytics'
pod 'TwitterKit'
pod 'SwiftyStoreKit'
pod 'Siren'
pod 'Appirater'
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'Countly'
target 'PaketeTests' do
inherit! :search_paths
pod 'Mockingjay'
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.name == 'Debug' and target.name == 'RxSwift'
config.build_settings['OTHER_SWIFT_FLAGS'] ||= ['-D', 'TRACE_RESOURCES']
end
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end