forked from twilio/twilio-video-app-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
49 lines (40 loc) · 1.16 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
source 'https://cdn.cocoapods.org'
platform :ios, '12.2'
inhibit_all_warnings!
use_frameworks!
workspace 'VideoApp'
target 'Video-Internal' do
project 'VideoApp/VideoApp.xcodeproj'
pod 'Alamofire', '~> 5'
pod 'AppCenter/Distribute', '~> 4'
pod 'Firebase/Analytics', '~> 8'
pod 'Firebase/Crashlytics', '~> 8'
pod 'FirebaseUI/Auth', '~> 12'
pod 'FirebaseUI/Google', '~> 12'
pod 'IGListDiffKit', '~> 4'
pod 'KeychainAccess', '~> 4'
pod 'TwilioVideo', '~> 5'
target 'Video-InternalTests' do
pod 'Nimble', '~> 9'
pod 'Quick', '~> 3'
target 'Video-CommunityTests' do
# Identical to Video-InternalTests
end
end
target 'Video-Community' do
# Identical to Video-Twilio
end
end
# Don't inherit pods like other targets for good black box testing
target 'Video-InternalUITests' do
project 'VideoApp/VideoApp.xcodeproj'
pod 'Nimble', '~> 9'
end
# Fix lots of build warnings: https://github.com/CocoaPods/CocoaPods/issues/9884
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end