blob: 0b7cf77ceb667417e6a48c4d2a41a19e84d06425 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
# Disable sending stats
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
def shared_pods
pod 'ProcedureKit', '5.2.0'
pod 'ProcedureKit/Network', '5.2.0'
end
target 'MullvadVPN' do
use_frameworks!
shared_pods
end
target 'PacketTunnel' do
use_frameworks!
shared_pods
end
|