-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
44 lines (35 loc) · 1.03 KB
/
Podfile
File metadata and controls
44 lines (35 loc) · 1.03 KB
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
# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
target 'Pinsit' do
use_frameworks!
pod 'IQKeyboardManager'
pod 'INTULocationManager'
pod 'JGProgressHUD'
pod 'KLCPopup'
pod 'FCCurrentLocationGeocoder'
pod 'TSMessages', :git => 'https://github.com/KrauseFx/TSMessages.git' #Temp, Until Cocoapods integration
pod 'PPTopMostController'
pod 'DeviceGuru'
pod 'StaticDataTableViewController'
pod 'AsyncImageView'
pod 'DZNEmptyDataSet'
pod 'VIMVideoPlayer'
pod 'INSPullToRefresh'
pod 'Async', :git => 'https://github.com/duemunk/Async.git'
#Parse Dependencies
pod 'Parse', '>= 1.8.1'
pod 'ParseUI'
pod 'ParseCrashReporting'
end
target 'PinsitTests' do
end
post_install do |installer|
installer.pods_project.targets.each do |target|
installer.pods_project.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODe'] = 'NO'
end
end
end