Skip to content

Commit b3b7730

Browse files
committed
Increment Android version code and log config
1 parent fe58968 commit b3b7730

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/android/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,15 @@ android {
133133

134134
// adds an offset of the version code as we might do apk releases in the middle of actual
135135
// releases if we failed on bundling or stuff
136-
val versionCodeOffset = 2
136+
val versionCodeOffset = 4
137137
// Defines the version number of your app.
138138
versionCode = (extra["gitVersionCode"] as? Int)?.plus(versionCodeOffset) ?: 0
139139

140140
// Defines a user-friendly version name for your app.
141141
versionName = extra["gitVersionName"] as? String ?: "v0.0.0"
142142

143+
logger.lifecycle("Configured for SlimeVR Android version $versionName ($versionCode)")
144+
143145
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
144146
}
145147

0 commit comments

Comments
 (0)