forked from inaturalist/INaturalistIOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
55 lines (51 loc) · 1.86 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
48
49
50
51
52
53
54
55
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, :deployment_target => '7.0'
inhibit_all_warnings!
target :iNaturalist do
pod 'Fabric', '1.5.4'
pod 'Crashlytics', '3.3.3'
pod ‘Flurry-iOS-SDK/FlurrySDK’, '7.1.0'
pod 'Facebook-iOS-SDK', '3.20.0'
pod 'Bolts', '1.1.3'
pod 'FontAwesomeKit', '2.2.0'
pod 'HexColors', '2.3.0'
pod 'BlocksKit', '2.2.5'
pod 'GeoJSONSerialization', '0.0.4'
pod 'AFNetworking', '1.3.4'
pod 'MHVideoPhotoGallery', '1.6.6'
pod 'UIColor-HTMLColors', '1.0.0'
pod 'SlackTextViewController', '1.7'
pod 'SVPullToRefresh', '0.4.1'
pod 'PDKTStickySectionHeadersCollectionViewLayout', '0.1'
pod 'googleplus-ios-sdk', '1.7.1'
pod 'SSZipArchive', '0.3.2'
pod 'ActionSheetPicker-3.0', '1.3.12'
pod 'NXOAuth2Client', '1.2.8'
pod 'RaptureXML', '1.0.1'
pod 'DCRoundSwitch', '0.0.1'
pod 'QBImagePickerController', '2.2.2'
pod 'VTAcknowledgementsViewController', '0.15'
pod 'JDFTooltips', '1.0'
pod 'CustomIOSAlertView', '0.9.3'
pod 'TapkuLibrary', '0.3.8'
pod 'SWRevealViewController', '2.3.0'
pod 'RestKit', '0.10.3'
pod 'SDWebImage', '3.7.3'
pod 'IFTTTLaunchImage', '0.4.4'
pod 'JDStatusBarNotification', '1.5.2'
pod 'JSONKit', :git => 'https://github.com/alexshepard/JSONKit.git', :commit => '46343e0e46fa8390fed0e8fff6367adb745d7fdd'
pod 'FileMD5Hash', :git => 'https://github.com/JoeKun/FileMD5Hash.git', :commit => '6864c180c010ab4b0514ba5c025091e12ab01199'
pod 'SVProgressHUD', :git => 'https://github.com/alexshepard/SVProgressHUD.git', :commit => 'c80b6cea04b966c3ff017d8e5d184c23f8af5cb4'
end
target :iNaturalistTests do
pod 'Specta'
pod 'Expecta'
end
# Append to your Podfile
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
end
end