abouttreesummaryrefslogcommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorJules Aguillon2025-12-18 19:48:47 +0100
committerJules Aguillon2025-12-18 19:50:22 +0100
commit258215f26c52b55b5760b707dbd0a749d418ce58 (patch)
tree32c1a6e3053cf0f3e10196dfeee86873d73fb01e /build.gradle.kts
parent41777fdda61715a59be241f0be9a8e3385222888 (diff)
downloadunexpected-keyboard-258215f26c52b55b5760b707dbd0a749d418ce58.tar.gz
unexpected-keyboard-258215f26c52b55b5760b707dbd0a749d418ce58.zip
gradle: Remove unecessary rule
The output APKs used to be named 'juloo.keyboard2.apk' are now named 'Unexpected-Keyboard-release.apk' since the Gradle upgrade and the rule setting it hasn't been working since.
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts11
1 files changed, 1 insertions, 10 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index a16fdef..d357ed2 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -64,7 +64,6 @@ android {
isMinifyEnabled = true
isShrinkResources = true
isDebuggable = false
- proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"))
resValue("string", "app_name", "@string/app_name_release")
signingConfig = signingConfigs["release"]
}
@@ -80,14 +79,6 @@ android {
}
}
- // Name outputs after the application ID.
- android.applicationVariants.forEach { variant ->
- variant.outputs.forEach {
- it as BaseVariantOutputImpl
- it.outputFileName = "${variant.applicationId}.apk"
- }
- }
-
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
@@ -161,7 +152,7 @@ val copyRawQwertyUS by tasks.registering(Copy::class) {
into("build/generated-resources/raw")
}
-val copyLayoutDefinitions by tasks.registering(Copy::class) {
+val copyLayoutDefinitions by tasks.registering(Copy::class) {
from("srcs/layouts")
include("*.xml")
into("build/generated-resources/xml")