File tree 2 files changed +5
-3
lines changed 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ android {
33
33
applicationId " com.k0d4black.theforce"
34
34
minSdkVersion rootProject. ext. minSdkVersion
35
35
targetSdkVersion rootProject. ext. targetSdkVersion
36
- versionCode rootProject. ext. versionCode
36
+ versionCode rootProject. ext. versionCodeMajor * 10000 + rootProject . ext . versionCodeMinor * 100 + rootProject . ext . versionCodePatch
37
37
versionName rootProject. ext. versionName
38
38
testInstrumentationRunner " com.k0d4black.theforce.runner.MockTestRunner"
39
39
}
Original file line number Diff line number Diff line change 6
6
buildToolsVersion = " 29.0.2"
7
7
8
8
// App Versioning
9
- versionCode = 1
10
- versionName = " 1.0"
9
+ versionCodeMajor = 1
10
+ versionCodeMinor = 0
11
+ versionCodePatch = 1
12
+ versionName = " $versionCodeMajor . $versionCodeMinor . $versionCodePatch "
11
13
12
14
// Dependencies Version - Presentation
13
15
appcompatVersion = ' 1.1.0'
You can’t perform that action at this time.
0 commit comments