Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Dec 6, 2021
1 parent 547b09b commit 45f3667
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ android {
applicationId "com.hoc081098.refreshtokensample"
minSdkVersion 23
targetSdkVersion 31
versionCode 2
versionName "1.1.0"
final MAJOR = 1
final MINOR = 2
final PATCH = 0
versionCode MAJOR * 10000 + MINOR * 100 + PATCH
versionName "$MAJOR.$MINOR.$PATCH"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down

0 comments on commit 45f3667

Please sign in to comment.