@@ -4,6 +4,7 @@ The Firebase C++ SDK provides C++ interfaces for the following Firebase services
4
4
on * iOS* and * Android* :
5
5
6
6
* Firebase Analytics
7
+ * Firebase App Check
7
8
* Firebase Authentication
8
9
* Firebase Cloud Messaging
9
10
* Firebase Dynamic Links
@@ -22,6 +23,7 @@ The Firebase C++ SDK includes desktop workflow support for the following subset
22
23
of Firebase features, enabling their use on Windows, OS X, and Linux:
23
24
24
25
* Firebase Authentication
26
+ * Firebase App Check
25
27
* Cloud Firestore
26
28
* Firebase Functions
27
29
* Firebase Remote Config
@@ -90,6 +92,14 @@ Firebase Analytics | libfirebase_analytics.a
90
92
| | libfirebase_app.a
91
93
| | com.google.firebase: firebase-analytics
92
94
| | (Maven package)
95
+ Firebase App Check | libfirebase_app_check.a
96
+ | | libfirebase_app.a
97
+ | | com.google.firebase: firebase-appcheck
98
+ | | (Maven package)
99
+ | | com.google.firebase: firebase-appcheck-debug
100
+ | | (Maven package)
101
+ | | com.google.firebase: firebase-appcheck-playintegrity
102
+ | | (Maven package)
93
103
Firebase Authentication | libfirebase_auth.a
94
104
| | libfirebase_app.a
95
105
| | com.google.firebase: firebase-analytics
@@ -182,8 +192,8 @@ using):
182
192
apply from: "$gradle.firebase_cpp_sdk_dir/Android/firebase_dependencies.gradle"
183
193
firebaseCpp.dependencies {
184
194
app // Recommended for all apps using Firebase.
185
- admob
186
195
analytics
196
+ appCheck
187
197
auth
188
198
database
189
199
dynamicLinks
@@ -219,6 +229,9 @@ Feature | Required Frameworks and Cocoapods
219
229
Firebase Analytics | firebase_analytics.xcframework
220
230
| | firebase.xcframework
221
231
| | Firebase/Analytics Cocoapod (10.9.0)
232
+ Firebase App Check | firebase_app_check.xcframework
233
+ | | firebase.xcframework
234
+ | | Firebase/AppCheck Cocoapod (10.9.0)
222
235
Firebase Authentication | firebase_auth.xcframework
223
236
| | firebase.xcframework
224
237
| | Firebase/Auth Cocoapod (10.9.0)
@@ -278,6 +291,9 @@ Feature | Required Libraries and Cocoapods
278
291
Firebase Analytics | libfirebase_analytics.a
279
292
| | libfirebase_app.a
280
293
| | Firebase/Analytics Cocoapod (10.9.0)
294
+ Firebase App Check | firebase_app_check.xcframework
295
+ | | firebase.xcframework
296
+ | | Firebase/AppCheck Cocoapod (10.9.0)
281
297
Firebase Authentication | libfirebase_auth.a
282
298
| | libfirebase_app.a
283
299
| | Firebase/Auth Cocoapod (10.9.0)
@@ -341,6 +357,8 @@ Feature | Required Libraries
341
357
------------------------------- | -----------------------------
342
358
Firebase Authentication | libfirebase_auth.a
343
359
| | libfirebase_app.a
360
+ Firebase App Check | libfirebase_app_check.a
361
+ | | libfirebase_app.a
344
362
Cloud Firestore | libfirebase_firestore.a
345
363
| | libfirebase_auth.a
346
364
| | libfirebase_app.a
@@ -382,6 +400,8 @@ Feature | Required Frameworks
382
400
------------------------------- | ----------------------------------
383
401
Firebase Authentication | firebase_auth.framework
384
402
| | firebase.framework
403
+ Firebase App Check | libfirebase_app_check.framework
404
+ | | libfirebase_app.framework
385
405
Cloud Firestore | firebase_firestore.framework
386
406
| | firebase_auth.framework
387
407
| | firebase.framework
@@ -424,6 +444,8 @@ Feature | Required Libraries and Gradle Packages
424
444
------------------------------- | --------------------------------------
425
445
Firebase Authentication | firebase_auth.lib
426
446
| | firebase_app.lib
447
+ Firebase App Check | libfirebase_app_check.lib
448
+ | | libfirebase_app.lib
427
449
Cloud Firestore | firebase_firestore.lib
428
450
| | firebase_auth.lib
429
451
| | firebase_app.lib
@@ -457,6 +479,7 @@ information):
457
479
Firebase C++ Library | Windows SDK library dependencies
458
480
-------------------- | -----------------------------------------------------
459
481
Authentication | ` advapi32, ws2_32, crypt32 `
482
+ App Check | ` advapi32, ws2_32, crypt32 `
460
483
Firestore | ` advapi32, ws2_32, crypt32, rpcrt4, ole32, shell32, dbghelp, bcrypt `
461
484
Functions | ` advapi32, ws2_32, crypt32, rpcrt4, ole32 `
462
485
Realtime Database | ` advapi32, ws2_32, crypt32, iphlpapi, psapi, userenv, shell32 `
@@ -553,6 +576,7 @@ library.
553
576
Firebase C++ Library | Google Play services required?
554
577
-------------------- | ---------------------------------
555
578
Analytics | Not required
579
+ App Check | Not required
556
580
Cloud Messaging | Required
557
581
Auth | Required
558
582
Dynamic Links | Required
@@ -612,6 +636,8 @@ code.
612
636
using Xcode 14.1.
613
637
- AdMob: Removed deprecated AdMob SDK. Please use the included Google
614
638
Mobile Ads SDK ("GMA") instead.
639
+ - App Check: Adds support for Firebase App Check on Android, iOS, tvOS,
640
+ and desktop platforms.
615
641
- GMA (Android): Updated dependency to play-services-ads version 22.0.0.
616
642
- Firestore: Added ` Query::Count() ` , which fetches the number of documents
617
643
in the result set without actually downloading the documents
0 commit comments