diff --git a/app/build.gradle.kts b/app/build.gradle.kts index bc78df55d..aa1483789 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -64,6 +64,14 @@ android { storePassword = properties["KEY_PASSWORD"] as String } } + create("aosp") { + // Generated from the AOSP test key: + // https://android.googlesource.com/platform/build/+/refs/tags/android-11.0.0_r29/target/product/security/testkey.pk8 + keyAlias = "testkey" + keyPassword = "testkey" + storeFile = file("testkey.jks") + storePassword = "testkey" + } } buildTypes { @@ -86,6 +94,7 @@ android { debug { applicationIdSuffix = ".debug" + signingConfig = signingConfigs.getByName("aosp") } } diff --git a/app/testkey.jks b/app/testkey.jks new file mode 100644 index 000000000..7faa3c925 Binary files /dev/null and b/app/testkey.jks differ