Sfoglia il codice sorgente

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

tags/jenkins-front-end-screenad-12^0
hupeng 6 anni fa
parent
commit
2ce13b92b1
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      android/app/build.gradle

+ 1
- 1
android/app/build.gradle Vedi File

@@ -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 = { ->


Caricamento…
Annulla
Salva