Skip to content

Commit 8cd2536

Browse files
Add App Check to the release notes (#1297)
* Add App Check to the release notes * Update readme.md --------- Co-authored-by: Jon Simantov <[email protected]>
1 parent 97bb568 commit 8cd2536

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

release_build_files/readme.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The Firebase C++ SDK provides C++ interfaces for the following Firebase services
44
on *iOS* and *Android*:
55

66
* Firebase Analytics
7+
* Firebase App Check
78
* Firebase Authentication
89
* Firebase Cloud Messaging
910
* Firebase Dynamic Links
@@ -22,6 +23,7 @@ The Firebase C++ SDK includes desktop workflow support for the following subset
2223
of Firebase features, enabling their use on Windows, OS X, and Linux:
2324

2425
* Firebase Authentication
26+
* Firebase App Check
2527
* Cloud Firestore
2628
* Firebase Functions
2729
* Firebase Remote Config
@@ -90,6 +92,14 @@ Firebase Analytics | libfirebase_analytics.a
9092
| | libfirebase_app.a
9193
| | com.google.firebase:firebase-analytics
9294
| | (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)
93103
Firebase Authentication | libfirebase_auth.a
94104
| | libfirebase_app.a
95105
| | com.google.firebase:firebase-analytics
@@ -182,8 +192,8 @@ using):
182192
apply from: "$gradle.firebase_cpp_sdk_dir/Android/firebase_dependencies.gradle"
183193
firebaseCpp.dependencies {
184194
app // Recommended for all apps using Firebase.
185-
admob
186195
analytics
196+
appCheck
187197
auth
188198
database
189199
dynamicLinks
@@ -219,6 +229,9 @@ Feature | Required Frameworks and Cocoapods
219229
Firebase Analytics | firebase_analytics.xcframework
220230
| | firebase.xcframework
221231
| | Firebase/Analytics Cocoapod (10.9.0)
232+
Firebase App Check | firebase_app_check.xcframework
233+
| | firebase.xcframework
234+
| | Firebase/AppCheck Cocoapod (10.9.0)
222235
Firebase Authentication | firebase_auth.xcframework
223236
| | firebase.xcframework
224237
| | Firebase/Auth Cocoapod (10.9.0)
@@ -278,6 +291,9 @@ Feature | Required Libraries and Cocoapods
278291
Firebase Analytics | libfirebase_analytics.a
279292
| | libfirebase_app.a
280293
| | Firebase/Analytics Cocoapod (10.9.0)
294+
Firebase App Check | firebase_app_check.xcframework
295+
| | firebase.xcframework
296+
| | Firebase/AppCheck Cocoapod (10.9.0)
281297
Firebase Authentication | libfirebase_auth.a
282298
| | libfirebase_app.a
283299
| | Firebase/Auth Cocoapod (10.9.0)
@@ -341,6 +357,8 @@ Feature | Required Libraries
341357
------------------------------- | -----------------------------
342358
Firebase Authentication | libfirebase_auth.a
343359
| | libfirebase_app.a
360+
Firebase App Check | libfirebase_app_check.a
361+
| | libfirebase_app.a
344362
Cloud Firestore | libfirebase_firestore.a
345363
| | libfirebase_auth.a
346364
| | libfirebase_app.a
@@ -382,6 +400,8 @@ Feature | Required Frameworks
382400
------------------------------- | ----------------------------------
383401
Firebase Authentication | firebase_auth.framework
384402
| | firebase.framework
403+
Firebase App Check | libfirebase_app_check.framework
404+
| | libfirebase_app.framework
385405
Cloud Firestore | firebase_firestore.framework
386406
| | firebase_auth.framework
387407
| | firebase.framework
@@ -424,6 +444,8 @@ Feature | Required Libraries and Gradle Packages
424444
------------------------------- | --------------------------------------
425445
Firebase Authentication | firebase_auth.lib
426446
| | firebase_app.lib
447+
Firebase App Check | libfirebase_app_check.lib
448+
| | libfirebase_app.lib
427449
Cloud Firestore | firebase_firestore.lib
428450
| | firebase_auth.lib
429451
| | firebase_app.lib
@@ -457,6 +479,7 @@ information):
457479
Firebase C++ Library | Windows SDK library dependencies
458480
-------------------- | -----------------------------------------------------
459481
Authentication | `advapi32, ws2_32, crypt32`
482+
App Check | `advapi32, ws2_32, crypt32`
460483
Firestore | `advapi32, ws2_32, crypt32, rpcrt4, ole32, shell32, dbghelp, bcrypt`
461484
Functions | `advapi32, ws2_32, crypt32, rpcrt4, ole32`
462485
Realtime Database | `advapi32, ws2_32, crypt32, iphlpapi, psapi, userenv, shell32`
@@ -553,6 +576,7 @@ library.
553576
Firebase C++ Library | Google Play services required?
554577
-------------------- | ---------------------------------
555578
Analytics | Not required
579+
App Check | Not required
556580
Cloud Messaging | Required
557581
Auth | Required
558582
Dynamic Links | Required
@@ -612,6 +636,8 @@ code.
612636
using Xcode 14.1.
613637
- AdMob: Removed deprecated AdMob SDK. Please use the included Google
614638
Mobile Ads SDK ("GMA") instead.
639+
- App Check: Adds support for Firebase App Check on Android, iOS, tvOS,
640+
and desktop platforms.
615641
- GMA (Android): Updated dependency to play-services-ads version 22.0.0.
616642
- Firestore: Added `Query::Count()`, which fetches the number of documents
617643
in the result set without actually downloading the documents

0 commit comments

Comments
 (0)