This commit is contained in:
Marek Lenczewski
2026-04-06 21:40:43 +02:00
parent f48f0aac08
commit 8e1d482ef2
7 changed files with 63 additions and 19 deletions

View File

@@ -16,6 +16,23 @@ android {
versionName = "1.0"
}
signingConfigs {
create("release") {
storeFile = file("../release-key.jks")
storePassword = "youtubeapp"
keyAlias = "youtubeapp"
keyPassword = "youtubeapp"
enableV1Signing = true
enableV2Signing = true
}
}
buildTypes {
getByName("release") {
signingConfig = signingConfigs.getByName("release")
}
}
buildFeatures {
compose = true
}