-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
31 lines (26 loc) · 978 Bytes
/
Podfile
File metadata and controls
31 lines (26 loc) · 978 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 'git@github.com:applicaster/CocoaPods-Private.git'
source 'git@github.com:applicaster/PluginsBuilderCocoaPods.git'
source 'git@github.com:sborkin/zapp-login-plugin-cleeng.git'
source 'https://cdn.cocoapods.org/'
def shared_pods
end
target 'DigicelLoginPluginExample' do
shared_pods
pod 'DigicelLoginPlugin', :path => 'DigicelLoginPlugin.podspec'
pod 'CleengLoginDigicel'
end
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
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