forked from OceanLabs/Photobook-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
41 lines (36 loc) · 903 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
38
39
40
41
platform :ios, '10.0'
use_frameworks!
target 'Photobook App' do
pod 'Fabric'
pod 'Crashlytics'
pod 'OAuthSwift', '~> 1.2.0'
pod 'KeychainSwift'
pod 'SDWebImage', '~> 4.3'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'Analytics', '~> 3.0'
pod 'PayPal-iOS-SDK/Core', '~> 2.18.0'
end
target 'SDK Demo' do
pod 'PayPal-iOS-SDK/Core', '~> 2.18.0'
end
target 'Photobook' do
pod 'Stripe'
pod 'Fabric'
pod 'Crashlytics'
pod 'KeychainSwift'
pod 'SDWebImage', '~> 4.3'
pod 'Analytics', '~> 3.0'
pod 'PayPal-iOS-Dynamic-Loader'
end
target 'PhotobookTests' do
pod 'OAuthSwift', '~> 1.2.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