Skip to content

Commit 9e96d41

Browse files
committed
Revert "fix appVersion code and set v2.0.0"
This reverts commit af48698.
1 parent af48698 commit 9e96d41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def getAppVersion() {
9191

9292
def (appVersion, provisional) = getAppVersion().tokenize('-rc')
9393
def (major, minor, patch) = appVersion.tokenize('.')
94-
def appVersionCode = ((major.toInteger() * 10000000) + (minor.toInteger() * 100000) + (patch.toInteger() * 100) + (provisional != null ? provisional.toInteger() : 99))
94+
def appVersionCode = ((major.toInteger() * 10000000) + (minor.toInteger() * 100000) + (patch.toInteger() * 100) + (provisional != null ? provisional.toInteger() : 0))
9595

9696
android {
9797
compileSdkVersion 23

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"name": "mSupplyMobile",
77
"//": "version must be in the format ${majorNumber}.${minorNumber}.${patchNumber}-rc${releaseCandidateNumber}",
8-
"version": "2.0.0",
8+
"version": "2.0.0-rc11",
99
"private": false,
1010
"license": "MIT",
1111
"description": "Mobile app for use with the mSupply medical inventory control software",

0 commit comments

Comments
 (0)