wireguard-apple/Podfile
Jeroen Leenarts 6707802e60 Update dependencies and remove unused dependencies.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2018-08-06 21:33:41 +02:00

24 lines
513 B
Ruby

platform :ios, '10.0'
use_frameworks!
swift_version = "4.0"
target 'WireGuard' do
pod 'SwiftLint'
pod 'PromiseKit/CorePromise'
pod 'KeychainSwift'
pod 'Moya'
pod 'Disk'
pod 'AlamofireImage'
pod 'BNRCoreDataStack'
pod 'NVActivityIndicatorView'
post_install do | installer |
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-WireGuard/Pods-WireGuard-Acknowledgements.plist', 'Resources/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end
end