implement creation and update of passkeys

This commit is contained in:
cali
2024-10-13 20:37:46 +02:00
parent 69114c3cc0
commit c907750446
29 changed files with 2060 additions and 807 deletions

View File

@@ -36,11 +36,17 @@ android {
kotlinOptions {
jvmTarget = "1.8"
}
packaging {
resources.excludes.add("META-INF/versions/9/OSGI-INF/MANIFEST.MF") // bouncycastle need this
}
}
dependencies {
// Crypto
implementation 'org.bouncycastle:bcpkix-jdk18on:1.78.1'
testImplementation "androidx.test:runner:$android_test_version"
androidTestImplementation "androidx.test:runner:$android_test_version"
androidTestImplementation 'org.testng:testng:6.9.6'
}