diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-06-29 04:43:38 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-06-29 04:43:38 +0000 |
| commit | 0d14a4d9bf9b466a77d079e7e9fecc527fcde181 (patch) | |
| tree | 6a447881ea1d49a813edf0d0d7b1e4b8c877d3ff /android/app | |
| parent | 814df9668f050ab8e95602d3db5fd3fcd75b1bd7 (diff) | |
feat: add release signing config for Android widget APK
Diffstat (limited to 'android/app')
| -rw-r--r-- | android/app/build.gradle.kts | 16 |
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 } |
