Skip to content

Commit 378fcbd

Browse files
authored
feat(app_check): Use Android dependencies from Firebase BOM (#11671)
* feat(app_check): Use Android dependencies from Firebase BOM * Update build.gradle
1 parent fccdf5f commit 378fcbd

File tree

1 file changed

+3
-3
lines changed
  • packages/firebase_app_check/firebase_app_check/android

1 file changed

+3
-3
lines changed

packages/firebase_app_check/firebase_app_check/android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ android {
5555
dependencies {
5656
api firebaseCoreProject
5757
implementation platform("com.google.firebase:firebase-bom:${getRootProjectExtOrCoreProperty("FirebaseSDKVersion", firebaseCoreProject)}")
58-
// TODO: Since App Check is a beta SDK it's not available in the Firebase Android BoM so we need to specify an exact version here.
59-
implementation 'com.google.firebase:firebase-appcheck-safetynet:16.1.0'
60-
implementation 'com.google.firebase:firebase-appcheck-debug:16.1.0'
58+
implementation 'com.google.firebase:firebase-appcheck-debug'
6159
implementation 'com.google.firebase:firebase-appcheck-playintegrity'
60+
// SafetyNet is deprecated and not part of Firebase BOM
61+
implementation 'com.google.firebase:firebase-appcheck-safetynet:16.1.2'
6262
implementation 'androidx.annotation:annotation:1.5.0'
6363
}
6464
}

0 commit comments

Comments
 (0)