aboutsummaryrefslogtreecommitdiffstats
path: root/Podfile
blob: 980dd9fc44a8ab4a4884134b449ac84854adcdd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
platform :ios, '10.0'

use_frameworks!

swift_version = "4.0"

target 'WireGuard' do
  pod 'SwiftLint'
  pod 'PromiseKit/CorePromise'
  pod 'Disk'
  pod 'BNRCoreDataStack'
  pod 'ZIPFoundation'

  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