From cf77ae33a10feef8bfe3e630389bdfe44e7c00e8 Mon Sep 17 00:00:00 2001 From: Eugene Date: Sun, 30 Aug 2026 14:32:42 +0300 Subject: [PATCH] enable all signatures --- apps/vbox/client/androidApp/build.gradle.kts | 2 +- .../main/kotlin/ru/shadowsparky/plugin/AndroidApplication.kt | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/vbox/client/androidApp/build.gradle.kts b/apps/vbox/client/androidApp/build.gradle.kts index 4c79ad3..9c14eb5 100644 --- a/apps/vbox/client/androidApp/build.gradle.kts +++ b/apps/vbox/client/androidApp/build.gradle.kts @@ -7,7 +7,7 @@ plugins { alias(libs.plugins.convention.ktor.client) } -val appVersion = "1.26.8" +val appVersion = "1.27" android { buildFeatures { buildConfig = true } diff --git a/build-logic/convention/src/main/kotlin/ru/shadowsparky/plugin/AndroidApplication.kt b/build-logic/convention/src/main/kotlin/ru/shadowsparky/plugin/AndroidApplication.kt index 3962322..d86ffc2 100644 --- a/build-logic/convention/src/main/kotlin/ru/shadowsparky/plugin/AndroidApplication.kt +++ b/build-logic/convention/src/main/kotlin/ru/shadowsparky/plugin/AndroidApplication.kt @@ -34,6 +34,11 @@ class AndroidApplication : Plugin { storePassword = properties.getProperty("RELEASE_STORE_PASSWORD") keyAlias = properties.getProperty("RELEASE_KEY_ALIAS") keyPassword = properties.getProperty("RELEASE_KEY_PASSWORD") + + enableV1Signing = true + enableV2Signing = true + enableV3Signing = true + enableV4Signing = true } } }