-
Notifications
You must be signed in to change notification settings - Fork 11
/
Podfile
executable file
·44 lines (38 loc) · 1.19 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
use_frameworks!
inhibit_all_warnings!
def shared_pods
pod 'Apollo', :git => 'https://github.com/apollographql/apollo-ios.git'
pod 'SwiftyJSON'
pod 'SwiftyUserDefaults'
end
target 'Eatery' do
platform :ios, '11.0'
shared_pods
pod 'AppDevAnnouncements', :git => 'https://github.com/cuappdev/appdev-announcements.git', :commit => '4cfbcd46af092037ac6632fe5616a13e5f280615'
pod 'ARCL'
pod 'BulletinBoard'
pod 'CHIPageControl/Jaloro'
pod 'FLEX', '~> 2.0', :configurations => ['Debug']
pod 'Fabric'
pod 'Firebase/Analytics'
pod 'Hero'
pod 'Kingfisher'
pod 'NVActivityIndicatorView'
pod 'SnapKit'
pod 'lottie-ios'
pod 'Wormholy', :configurations => ['Debug', 'TestFlight']
end
target 'Eatery Watch App' do
platform :watchos, '6.0'
shared_pods
end
target 'Eatery Watch App Extension' do
platform :watchos, '6.0'
shared_pods
end
# https://stackoverflow.com/questions/63607158/xcode-12-building-for-ios-simulator-but-linking-in-object-file-built-for-ios
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end