forked from SwiftAnyPic/SwiftAnyPic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
36 lines (28 loc) · 954 Bytes
/
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
# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
target 'SwiftAnyPic' do
use_frameworks!
pod 'Parse', '~> 1.7.5'
pod 'ParseFacebookUtils', '~> 1.7.5'
pod 'ParseCrashReporting', '~> 1.7.5'
# Workaround for the unknown crashes Bolts (https://github.com/BoltsFramework/Bolts-iOS/issues/102)
pod 'Bolts', :git => 'https://github.com/kwkhaw/Bolts-iOS.git'
pod 'ParseUI', '1.1.4'
pod 'MBProgressHUD', '~> 0.9.1'
pod 'FormatterKit', '~> 1.8.0'
pod 'UIImageEffects', '~> 0.0.1'
pod 'UIImage+AF+Additions', :git => 'https://github.com/melvitax/UIImageAFAdditions.git'
pod 'Synchronized', '~> 2.0.0'
end
target 'SwiftAnyPicTests' do
end
target 'SwiftAnyPicUITests' do
end
# Disable bitcode for now.
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end