summaryrefslogtreecommitdiff
path: root/android/app
diff options
context:
space:
mode:
Diffstat (limited to 'android/app')
-rw-r--r--android/app/build.gradle.kts16
1 files changed, 16 insertions, 0 deletions
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
}