feat(build): support dynamic appVersion in gradle and remove obsolete release.sh
Co-authored-by: Junie <junie@jetbrains.com>
This commit is contained in:
parent
57b5ede338
commit
236ef048b5
2 changed files with 1 additions and 93 deletions
|
|
@ -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")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue