Skip to content

Commit

Permalink
[#448] Increase build number when deploying
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiasama committed Jul 17, 2023
1 parent 9b7cce3 commit 9b3950e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template-compose/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
val keystoreProperties = rootDir.loadGradleProperties("signing.properties")
val getVersionCode: () -> Int = {
if (project.hasProperty("versionCode")) {
project.property("versionCode") as Int
(project.property("versionCode") as String).toInt()
} else {
Versions.ANDROID_VERSION_CODE
}
Expand Down

0 comments on commit 9b3950e

Please sign in to comment.