-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPodfile
37 lines (32 loc) · 891 Bytes
/
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
platform :ios, '10.0'
use_frameworks!
target 'Photobook App' do
pod 'Fabric', '~> 1.10.0'
pod 'Crashlytics', '~> 3.14.0'
pod 'OAuthSwift', '~> 2.0.0'
pod 'KeychainSwift', '~> 17.0.0'
pod 'SDWebImage', '~> 5.2.0'
pod 'FBSDKCoreKit', '~> 5.8.0'
pod 'FBSDKLoginKit', '~> 5.8.0'
pod 'Analytics', '~> 3.7.0'
end
target 'SDK Demo' do
end
target 'Photobook' do
pod 'Stripe', '~> 18.0.0'
pod 'KeychainSwift', '~> 17.0.0'
pod 'SDWebImage', '~> 5.2.0'
pod 'Analytics', '~> 3.7.0'
pod 'PayPal-iOS-Dynamic-Loader'
end
target 'PhotobookTests' do
pod 'OAuthSwift', '~> 2.0.0'
end
# Revert build for active architecture being set to YES by installation
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
end
end