We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 547b09b commit 45f3667Copy full SHA for 45f3667
app/build.gradle
@@ -14,8 +14,11 @@ android {
14
applicationId "com.hoc081098.refreshtokensample"
15
minSdkVersion 23
16
targetSdkVersion 31
17
- versionCode 2
18
- versionName "1.1.0"
+ final MAJOR = 1
+ final MINOR = 2
19
+ final PATCH = 0
20
+ versionCode MAJOR * 10000 + MINOR * 100 + PATCH
21
+ versionName "$MAJOR.$MINOR.$PATCH"
22
23
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
24
}
0 commit comments