Skip to content

Commit 45f3667

Browse files
authored
1.2.0
1 parent 547b09b commit 45f3667

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

app/build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ android {
1414
applicationId "com.hoc081098.refreshtokensample"
1515
minSdkVersion 23
1616
targetSdkVersion 31
17-
versionCode 2
18-
versionName "1.1.0"
17+
final MAJOR = 1
18+
final MINOR = 2
19+
final PATCH = 0
20+
versionCode MAJOR * 10000 + MINOR * 100 + PATCH
21+
versionName "$MAJOR.$MINOR.$PATCH"
1922

2023
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2124
}

0 commit comments

Comments
 (0)