Skip to content

Commit

Permalink
chores(app): Target API 33 and increment app version
Browse files Browse the repository at this point in the history
  • Loading branch information
static-var committed Feb 17, 2023
1 parent bf85aa8 commit a5a8d58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/AppVersions.kt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
object AppVersions {
private const val versionMajor = 1
private const val versionMinor = 0
private const val versionPatch = 0
private const val versionPatch = 1

const val versionCode = versionMajor * 10000 + versionMinor * 100 + versionPatch
const val versionName = "$versionMajor.$versionMinor.$versionPatch"

const val COMPILE_SDK = 31
const val COMPILE_SDK = 33
const val MIN_SDK = 21
const val TARGET_SDK = 31
const val TARGET_SDK = 33
const val APPLICATION_ID = "com.mutualmobile.praxis"
}

0 comments on commit a5a8d58

Please sign in to comment.