We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe58968 commit b3b7730Copy full SHA for b3b7730
server/android/build.gradle.kts
@@ -133,13 +133,15 @@ android {
133
134
// adds an offset of the version code as we might do apk releases in the middle of actual
135
// releases if we failed on bundling or stuff
136
- val versionCodeOffset = 2
+ val versionCodeOffset = 4
137
// Defines the version number of your app.
138
versionCode = (extra["gitVersionCode"] as? Int)?.plus(versionCodeOffset) ?: 0
139
140
// Defines a user-friendly version name for your app.
141
versionName = extra["gitVersionName"] as? String ?: "v0.0.0"
142
143
+ logger.lifecycle("Configured for SlimeVR Android version $versionName ($versionCode)")
144
+
145
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
146
}
147
0 commit comments