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

use_frameworks!

swift_version = "4.0"

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

  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