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

use_frameworks!

swift_version = "4.0"

target 'WireGuard' do
  pod 'Fabric'
  pod 'Crashlytics'
  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