Skip to content

Commit a3501e2

Browse files
committed
rc versions less than official releases
1 parent 9e96d41 commit a3501e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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() : 0))
94+
def appVersionCode = ((major.toInteger() * 10000000) + (minor.toInteger() * 100000) + (patch.toInteger() * 100) + (provisional != null ? provisional.toInteger() : 99))
9595

9696
android {
9797
compileSdkVersion 23

0 commit comments

Comments
 (0)