-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathPodfile
More file actions
24 lines (20 loc) · 736 Bytes
/
Podfile
File metadata and controls
24 lines (20 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source 'https://github.com/CocoaPods/Specs.git'
# Cloud Functions for Firebase test application.
use_frameworks! :linkage => :static
target 'integration_test' do
platform :ios, '15.0'
pod 'Firebase/AppCheck', '12.10.0'
pod 'Firebase/Functions', '12.10.0'
pod 'Firebase/Auth', '12.10.0'
end
target 'integration_test_tvos' do
platform :tvos, '15.0'
pod 'Firebase/AppCheck', '12.10.0'
pod 'Firebase/Functions', '12.10.0'
pod 'Firebase/Auth', '12.10.0'
end
post_install do |installer|
# If this is running from inside the SDK directory, run the setup script.
system("if [[ -r ../../setup_integration_tests.py ]]; then python3 ../../setup_integration_tests.py .; fi")
system("python3 ./download_googletest.py")
end