-
Notifications
You must be signed in to change notification settings - Fork 12
/
Podfile
47 lines (39 loc) · 1.09 KB
/
Podfile
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
# use_frameworks!
target 'AWARE' do
pod 'MQTTKit'
pod 'SCNetworkReachability'
pod 'GoogleSignIn'
pod 'DeployGateSDK'
pod 'ios-ntp'
pod 'EZAudio'
pod 'SVProgressHUD'
pod 'EAIntroView', '~> 2.9.0'
pod 'NXOAuth2Client', '~> 1.2.8'
pod 'EstimoteSDK'
pod 'UICountingLabel'
#pod 'PNChart'
# pod 'Charts'
end
target 'AWARETests' do
#pod 'MQTTKit'
#pod 'SCNetworkReachability'
#pod 'Google/SignIn'
#pod 'DeployGateSDK'
#pod 'ios-ntp'
#pod 'EZAudio'
#pod 'SVProgressHUD'
#pod 'EAIntroView', '~> 2.9.0'
end
target 'AWAREUITests' do
end
post_install do | installer |
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-AWARE/Pods-AWARE-acknowledgements.plist', 'AWARE/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end
#post_install do | installer |
# require 'fileutils'
# FileUtils.cp_r('Pods/Target Support Files/Pods-AWARE/Pods-AWARE-acknowledgements.plist', 'Settings.bundle/Acknowledgements.plist', :remove_destination => true)
#end