-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPodfile
More file actions
31 lines (26 loc) · 839 Bytes
/
Podfile
File metadata and controls
31 lines (26 loc) · 839 Bytes
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
platform :ios, '10.0'
use_frameworks!
install! 'cocoapods', :deterministic_uuids => false
source 'git@github.com:applicaster/CocoaPods.git'
source 'https://cdn.cocoapods.org/'
pre_install do |installer|
# workaround for https://github.com/CocoaPods/CocoaPods/issues/3289
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
end
def shared_pods
pod 'ZappPlugins'
pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FBSDKCoreKit', '= 4.38.0'
pod 'FBSDKLoginKit', '= 4.38.0'
end
target 'ZappLoginPluginExample-iOS' do
shared_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5.1'
end
end
end