feat(build): support dynamic appVersion in gradle and remove obsolete release.sh

Co-authored-by: Junie <junie@jetbrains.com>
This commit is contained in:
Rukira 2026-08-24 16:11:31 +01:00
parent 57b5ede338
commit 236ef048b5
2 changed files with 1 additions and 93 deletions

View file

@ -34,7 +34,7 @@ kotlin {
}
}
val appVersion = "1.0.0"
val appVersion = (project.findProperty("appVersion") as? String)?.takeIf { it.isNotBlank() } ?: "1.0.0"
val generatedSrcDir = layout.buildDirectory.dir("generated/src/jvmMain/kotlin")