-
Notifications
You must be signed in to change notification settings - Fork 81
/
Podfile
30 lines (25 loc) · 1.2 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
# Uncomment the next line to define a global platform for your project
platform :ios, '15.0'
# Disable sending stats
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
use_modular_headers!
target 'Psiphon' do
# Pods for Psiphon
pod "InAppSettingsKit", :git => "https://github.com/Psiphon-Inc/InAppSettingsKit.git", :commit => '8bd203c'
#pod "InAppSettingsKit", :path => "../InAppSettingsKit"
#pod "PsiphonClientCommonLibrary", :path => "../psiphon-ios-client-common-library"
pod 'PsiphonClientCommonLibrary', :git => "https://github.com/Psiphon-Inc/psiphon-ios-client-common-library.git", :commit => '12b3763'
pod 'ReactiveObjC', :git => "https://github.com/Psiphon-Inc/ReactiveObjC.git", :commit => '8bbf9dd'
pod 'MBProgressHUD', '~> 1.1.0'
pod 'SVProgressHUD', '~> 2.2.5'
pod 'EFCountingLabel', '~> 5.1.3'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' # https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1201464693
end
end
end