2018-05-23 19:49:10 +00:00
|
|
|
platform :ios, '10.0'
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
swift_version = "4.0"
|
|
|
|
|
2018-05-24 18:13:21 +00:00
|
|
|
target 'WireGuard' do
|
2018-05-23 19:49:10 +00:00
|
|
|
pod 'SwiftLint'
|
|
|
|
pod 'PromiseKit/CorePromise'
|
|
|
|
pod 'Disk'
|
|
|
|
pod 'BNRCoreDataStack'
|
2018-09-02 20:31:39 +00:00
|
|
|
pod 'ZIPFoundation'
|
2018-05-23 19:49:10 +00:00
|
|
|
|
|
|
|
post_install do | installer |
|
|
|
|
require 'fileutils'
|
2018-05-24 18:13:21 +00:00
|
|
|
FileUtils.cp_r('Pods/Target Support Files/Pods-WireGuard/Pods-WireGuard-Acknowledgements.plist', 'Resources/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
|
2018-05-23 19:49:10 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|