aboutsummaryrefslogtreecommitdiffstats
path: root/Podfile
blob: 093d6951ad095e364f70a8dcdb46431f792a4a79 (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