diff --git a/apps/mobile-rn/android/app/build.gradle b/apps/mobile-rn/android/app/build.gradle index 6d6c947..78fae42 100644 --- a/apps/mobile-rn/android/app/build.gradle +++ b/apps/mobile-rn/android/app/build.gradle @@ -95,15 +95,23 @@ android { keyAlias 'androiddebugkey' keyPassword 'android' } + release { + storeFile file('d3ro-release-key.keystore') + storePassword 'd3rovoice2026' + keyAlias 'd3ro-release-key' + keyPassword 'd3rovoice2026' + v1SigningEnabled true + v2SigningEnabled true + enableV3Signing = true + enableV4Signing = true + } } buildTypes { debug { - signingConfig signingConfigs.debug + signingConfig signingConfigs.release } release { - // Caution! In production, you need to generate your own keystore file. - // see https://reactnative.dev/docs/signed-apk-android. - signingConfig signingConfigs.debug + signingConfig signingConfigs.release minifyEnabled enableProguardInReleaseBuilds proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" }