Explorar el Código

Change versionCodeOverride base number

In order to be able to push beta to production, aab version number should be greater than the previous x86_64 apk.
Change versionCodeOverride base number to 10000000 to fix the issue.
pull/521/head
Guillaume Vincent hace 4 años
padre
commit
a9631c336f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      mobile/android/app/build.gradle

+ 1
- 1
mobile/android/app/build.gradle Ver fichero

@@ -195,7 +195,7 @@ android {
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
versionCodes.get(abi) * 10000000 + defaultConfig.versionCode
}

}


Cargando…
Cancelar
Guardar