Skip to content

Commit

Permalink
version bump to 1.0.1 (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
odaridavid committed May 2, 2020
1 parent d6a4109 commit a7895b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ android {
applicationId "com.k0d4black.theforce"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode rootProject.ext.versionCode
versionCode rootProject.ext.versionCodeMajor * 10000 + rootProject.ext.versionCodeMinor * 100 + rootProject.ext.versionCodePatch
versionName rootProject.ext.versionName
testInstrumentationRunner "com.k0d4black.theforce.runner.MockTestRunner"
}
Expand Down
6 changes: 4 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ ext {
buildToolsVersion = "29.0.2"

//App Versioning
versionCode = 1
versionName = "1.0"
versionCodeMajor = 1
versionCodeMinor = 0
versionCodePatch = 1
versionName = "$versionCodeMajor.$versionCodeMinor.$versionCodePatch"

//Dependencies Version - Presentation
appcompatVersion = '1.1.0'
Expand Down

0 comments on commit a7895b8

Please sign in to comment.