This repository has been archived by the owner on Aug 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Podfile
66 lines (49 loc) · 1.71 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.1'
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
def sharedpods
# development pods
pod 'TunnelKit', :path => '../tunnelkit'
pod 'vpncore', :path => '../vpncore' # run `pod update vpncore` after changing source
# Core
pod 'PMNetworking', :path => '../pmnetworking' # run `pod update PMNetworking` after changing source
pod 'PMChallenge', :path => '../pmchallenge' # run `pod update PMChallenge` after changing source
# third party pods
pod 'GSMessages', '~> 1.0'
pod 'KeychainAccess', '3.2.1'
pod 'ReachabilitySwift', '5.0.0'
pod 'Sentry', '4.5.0'
pod 'AlamofireImage', '~> 4.1'
# Checks code style and bad practices
pod 'SwiftLint', '0.42.0'
# Certificates pinning
pod 'TrustKit', :git => 'https://github.com/ProtonMail/TrustKit', :commit => '838fba789e01c9cabff77acea3fb7135f71a220f'
end
target 'ProtonVPN' do
sharedpods
target 'OpenVPN Extension' do
inherit! :search_paths
end
target 'Quick Connect Widget' do
inherit! :search_paths
end
target 'Siri Shortcut Handler' do
inherit! :search_paths
end
target 'ProtonVPNTests' do
inherit! :search_paths
end
end
plugin 'cocoapods-acknowledgements', :settings_bundle => true, :exclude => ['vpncore']
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf'
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-ProtonVPN/Pods-ProtonVPN-acknowledgements.markdown', 'ACKNOWLEDGEMENTS.md')
end