-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathPodfile
29 lines (25 loc) · 1.17 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'
use_frameworks!
target 'GetPods' do
pod 'Firebase/Core', '11.10.0'
pod 'Google-Mobile-Ads-SDK', '11.2.0'
pod 'GoogleUserMessagingPlatform', '2.3.0'
pod 'Firebase/Analytics', '11.10.0'
pod 'Firebase/AppCheck', '11.10.0'
pod 'Firebase/Auth', '11.10.0'
pod 'Firebase/Crashlytics', '11.10.0'
pod 'Firebase/Database', '11.10.0'
pod 'Firebase/DynamicLinks', '11.10.0'
pod 'Firebase/Firestore', '11.10.0'
pod 'Firebase/Functions', '11.10.0'
pod 'Firebase/Installations', '11.10.0'
pod 'Firebase/Messaging', '11.10.0'
pod 'Firebase/RemoteConfig', '11.10.0'
pod 'Firebase/Storage', '11.10.0'
end
post_install do |installer|
# Patch FirebaseAppCheck 10.16.0 header to replace @import with #import.
# TODO (b/304327855): Remove when iOS SDK 10.17.0 is released.
system("sed '-i~' 's%^@import FirebaseAppCheckInterop;%#import \"FirebaseAppCheck/Interop/FIRAppCheckInterop.h\"\\n#import \"FirebaseAppCheck/Interop/FIRAppCheckProtocol.h\"\\n#import \"FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h\"%' Pods/FirebaseAppCheck/FirebaseAppCheck/Sources/Public/FirebaseAppCheck/FIRAppCheck.h")
end