-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathPodfile
More file actions
27 lines (23 loc) · 1.08 KB
/
Podfile
File metadata and controls
27 lines (23 loc) · 1.08 KB
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '15.0'
use_frameworks!
target 'GetPods' do
pod 'Firebase/Core', '12.2.0'
pod 'GoogleUserMessagingPlatform', '2.3.0'
pod 'Firebase/Analytics', '12.2.0'
pod 'Firebase/AppCheck', '12.2.0'
pod 'Firebase/Auth', '12.2.0'
pod 'Firebase/Crashlytics', '12.2.0'
pod 'Firebase/Database', '12.2.0'
pod 'Firebase/Firestore', '12.2.0'
pod 'Firebase/Functions', '12.2.0'
pod 'Firebase/Installations', '12.2.0'
pod 'Firebase/Messaging', '12.2.0'
pod 'Firebase/RemoteConfig', '12.2.0'
pod 'Firebase/Storage', '12.2.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