-
Notifications
You must be signed in to change notification settings - Fork 50
/
Podfile
69 lines (63 loc) · 2.58 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, :deployment_target => '12.0'
inhibit_all_warnings!
use_frameworks!
target :iNaturalist do
pod 'Gallery'
pod 'Firebase/AnalyticsWithoutAdIdSupport'
pod 'FirebaseCrashlytics'
pod 'JWT', '2.2.0'
pod 'FontAwesomeKit', :git => 'https://github.com/alexshepard/FontAwesomeKit', :commit => '74fe81b8a0a855e6d9cf62f29f02b47237fab25c'
pod 'HexColors', '2.3.0'
pod 'BlocksKit', '2.2.5'
pod 'GeoJSONSerialization', '0.0.4'
pod 'AFNetworking', '3.2.0'
pod 'UIColor-HTMLColors', '1.0.0'
pod 'SVPullToRefresh', '0.4.1'
pod 'PDKTStickySectionHeadersCollectionViewLayout', '0.1'
pod 'GoogleSignIn', '6.2.4'
pod 'SSZipArchive', '0.3.2'
pod 'ActionSheetPicker-3.0', '1.3.12'
pod 'NXOAuth2Client', :git => 'https://github.com/inaturalist/OAuth2Client', :branch => 'iNat'
pod 'RaptureXML', '1.0.1'
pod 'DCRoundSwitch', '0.0.1'
pod 'VTAcknowledgementsViewController', '0.15'
pod 'JDFTooltips', '1.0'
pod 'CustomIOSAlertView', '0.9.3'
pod 'YLProgressBar', '3.9.0'
pod 'PBRevealViewController'
pod 'SDWebImage', '4.0.0'
pod 'JDStatusBarNotification', '1.5.2'
pod 'MBProgressHUD', '0.9.1'
pod 'NSString_stripHtml', '0.1.0'
pod 'Mantle', '1.5.8'
pod 'ICViewPager', :git => 'https://github.com/alexshepard/ICViewPager.git', :commit => '4c45423b6a36fb38753af86a1050b6a3a1d548b8'
pod 'Realm', '~>10'
pod 'ARSafariActivity'
pod 'M13ProgressSuite', :git => 'https://github.com/rogerioth/M13ProgressSuite.git'
pod 'MHVideoPhotoGallery', :git => 'https://github.com/alexshepard/MHVideoPhotoGallery', :commit => '0a343f12b60c8719a280db73b1e2b6d25fef164a'
pod 'Down', :git => 'https://github.com/ocshing/Down-gfm'
pod 'SimpleKeychain', '0.12.5'
target 'iNaturalistTests' do
inherit! :search_paths
pod 'OCMock'
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
# workaround for https://github.com/CocoaPods/CocoaPods/issues/11477
if target.name == 'Realm'
create_symlink_phase = target.shell_script_build_phases.find { |x| x.name == 'Create Symlinks to Header Folders' }
create_symlink_phase.always_out_of_date = "1"
end
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
if config.base_configuration_reference
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
end
end
end
end