diff --git a/android/app/build.gradle b/android/app/build.gradle index 288d8a42..a28f69da 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -19,11 +19,23 @@ android { } } + signingConfigs { + debug { + storeFile file("debug.keystore") + storePassword "android" + keyAlias "androiddebugkey" + keyPassword "android" + } + } + buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt') } + debug { + signingConfig signingConfigs.debug + } } externalNativeBuild { diff --git a/android/app/debug.keystore b/android/app/debug.keystore new file mode 100644 index 00000000..8f07a316 Binary files /dev/null and b/android/app/debug.keystore differ