Skip to content

Commit a7895b8

Browse files
authored
version bump to 1.0.1 (#66)
1 parent d6a4109 commit a7895b8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ android {
3333
applicationId "com.k0d4black.theforce"
3434
minSdkVersion rootProject.ext.minSdkVersion
3535
targetSdkVersion rootProject.ext.targetSdkVersion
36-
versionCode rootProject.ext.versionCode
36+
versionCode rootProject.ext.versionCodeMajor * 10000 + rootProject.ext.versionCodeMinor * 100 + rootProject.ext.versionCodePatch
3737
versionName rootProject.ext.versionName
3838
testInstrumentationRunner "com.k0d4black.theforce.runner.MockTestRunner"
3939
}

dependencies.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ ext {
66
buildToolsVersion = "29.0.2"
77

88
//App Versioning
9-
versionCode = 1
10-
versionName = "1.0"
9+
versionCodeMajor = 1
10+
versionCodeMinor = 0
11+
versionCodePatch = 1
12+
versionName = "$versionCodeMajor.$versionCodeMinor.$versionCodePatch"
1113

1214
//Dependencies Version - Presentation
1315
appcompatVersion = '1.1.0'

0 commit comments

Comments
 (0)