-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
38 lines (34 loc) · 1.46 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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
target 'Uplift' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'AlamofireImage'
pod 'Apollo'#, :git => 'https://github.com/apollographql/apollo-ios.git', :commit => 'b28c3dc'
pod 'AppDevAnnouncements', :git => 'https://github.com/cuappdev/appdev-announcements.git'
pod 'AppDevHistogram', :git => 'https://github.com/cuappdev/appdev-histogram.git'
pod 'Bartinter'
pod 'Crashlytics' # TODO: - remove
pod 'Fabric' # TODO: - remove
pod 'Firebase/Analytics'
pod 'GoogleSignIn'
pod 'Kingfisher'
pod 'Presentation', :git=> 'https://github.com/cuappdev/Presentation.git', :commit => 'b53eb453d2e1520e724cfac5e3e444e730ffe985'
pod 'SideMenu', '~> 6.0'
pod 'SkeletonView'
pod 'SnapKit'
pod 'SwiftLint'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11'
config.build_settings['ARCHS[sdk=iphonesimulator*]'] = 'x86_64'
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