Explorar el Código

[编译][修改]:版本号转换未整数

tags/jenkins-front-end-screenad-12^0
hupeng hace 6 años
padre
commit
2ce13b92b1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      android/app/build.gradle

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

@@ -99,7 +99,7 @@ android {
buildToolsVersion rootProject.ext.buildToolsVersion

def getVersionCode = { ->
return project.hasProperty('versionCode') ? project.versionCode : 1
return project.hasProperty('versionCode') ? Integer.parseInt(project.versionCode) : 1
}

def getVersionName = { ->


Cargando…
Cancelar
Guardar