Skip to content

Commit

Permalink
Bump version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fibelatti committed Sep 23, 2023
1 parent 863cabd commit ac7b4ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ object AppInfo {
const val applicationId = "com.fibelatti.pinboard"

private const val versionMajor = 2
private const val versionMinor = 1
private const val versionMinor = 2
private const val versionPatch = 0
private const val versionBuild = 0

val versionCode: Int = (versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild)
val versionCode: Int = (versionMajor * 1_000_000 + versionMinor * 10_000 + versionPatch * 100 + versionBuild)
.also { println("versionCode: $it") }

val versionName: String = StringBuilder("$versionMajor.$versionMinor")
Expand Down

0 comments on commit ac7b4ed

Please sign in to comment.