-
Notifications
You must be signed in to change notification settings - Fork 49
/
FirebaseFirestoreGRPCBoringSSLBinary.podspec
executable file
·47 lines (39 loc) · 2.05 KB
/
FirebaseFirestoreGRPCBoringSSLBinary.podspec
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
firebase_firestore_version='11.4.0'
firebase_firestore_abseil_url='https://github.com/invertase/firestore-ios-sdk-frameworks/raw/11.4.0/Archives/abseil.zip'
firebase_firestore_abseil_version='1.2024011602.0'
firebase_firestore_grpc_version='1.65.1'
firebase_firestore_grpc_version_url='https://github.com/invertase/firestore-ios-sdk-frameworks/raw/11.4.0/Archives/grpc.zip'
firebase_firestore_grpc_ccp_version_url='https://github.com/invertase/firestore-ios-sdk-frameworks/raw/11.4.0/Archives/grpcpp.zip'
firebase_firestore_leveldb_version='~> 1.22'
firebase_firestore_nanopb_version='~> 3.30910.0'
firebase_firestore_grpc_boringssl_url='https://github.com/invertase/firestore-ios-sdk-frameworks/raw/11.4.0/Archives/openssl.zip'
firebase_firestore_internal_url='https://github.com/invertase/firestore-ios-sdk-frameworks/raw/11.4.0/Archives/firestore_internal.zip'
Pod::Spec.new do |s|
s.name = 'FirebaseFirestoreGRPCBoringSSLBinary'
s.version = firebase_firestore_grpc_version
s.summary = 'A replica Firebase Firestore podspec.'
s.description = 'A replica Firebase Firestore podspec that provides pre-compiled binaries/frameworks instead'
s.homepage = 'https://invertase.io'
s.license = 'Apache-2.0'
# See https://github.com/google/grpc-binary/blob/main/Package.swift
s.source = {
:http => firebase_firestore_grpc_boringssl_url
}
s.cocoapods_version = '>= 1.12.0'
s.authors = 'Invertase Limited'
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.ios.frameworks = 'SystemConfiguration', 'UIKit'
s.osx.frameworks = 'SystemConfiguration'
s.tvos.frameworks = 'SystemConfiguration', 'UIKit'
s.library = 'c++'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.swift_version = '5.3'
s.resource_bundles = {
"#{s.module_name}_Privacy" => 'PrivacyInfo.xcprivacy'
}
s.vendored_frameworks = [
"openssl_grpc.xcframework",
]
end