identity: Make dependencies explicit.
Use explicit dependencies with lowest possible version that provides
what is required.
Bug: None
Test: Unit tests.
Change-Id: I1ed95f9fc9d7f2bfb500e90d98b60f4b15e56bd6
diff --git a/security/security-identity-credential/build.gradle b/security/security-identity-credential/build.gradle
index fcae685b..6f2a83c 100644
--- a/security/security-identity-credential/build.gradle
+++ b/security/security-identity-credential/build.gradle
@@ -26,12 +26,11 @@
}
dependencies {
- implementation("androidx.annotation:annotation:1.1.0")
+ implementation("androidx.annotation:annotation:1.2.0")
+ implementation("androidx.biometric:biometric:1.1.0-alpha02")
implementation("co.nstant.in:cbor:0.8")
- implementation(project(":biometric:biometric"))
implementation("org.bouncycastle:bcprov-jdk15on:1.65")
implementation("org.bouncycastle:bcpkix-jdk15on:1.56")
- implementation project(path: ':annotation:annotation')
androidTestImplementation(libs.testExtJunit)
androidTestImplementation(libs.testCore)