From 0d14a4d9bf9b466a77d079e7e9fecc527fcde181 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Mon, 29 Jun 2026 04:43:38 +0000 Subject: feat: add release signing config for Android widget APK --- android/app/build.gradle.kts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'android/app/build.gradle.kts') diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index e0745ea..d6fe8c4 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -17,6 +17,22 @@ android { versionName = "1.0" } + signingConfigs { + create("release") { + storeFile = file("../doot-widget.keystore") + storePassword = "dootwid2026" + keyAlias = "doot-widget" + keyPassword = "dootwid2026" + } + } + + buildTypes { + release { + isMinifyEnabled = false + signingConfig = signingConfigs.getByName("release") + } + } + buildFeatures { compose = true } -- cgit v1.2.3