本文介紹了使用不同的版本代碼進行調試/發布 android gradle build的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我想應用 不同的 VersionCode 來制作 apk 文件.僅用于調試將其修復為 1
,并用于發布 defaultConfig 中指定的任何數字.
I'd like to apply different VersionCode to make apk file.
For debug only fix it to 1
, and for release whatever number specified in defaultConfig.
下面的代碼將 mypackage-release-1.apk
文件作為 assembleRelease 工件,這不是預期的.我期待 mypackage-release-10111.apk
.
Below code gives mypackage-release-1.apk
file as assembleRelease artifact, which is not expected. I expected mypackage-release-10111.apk
for that.
為什么 debug { defaultConfig.versionCode=1 }
行會影響 assembleRelease 工件?
why the line debug { defaultConfig.versionCode=1 }
affects assembleRelease artifact?
defaultConfig {
versionCode 10111
versionName '2.5.4'
minSdkVersion 10
targetSdkVersion 21
}
signingConfigs {
debug {
project.ext.loadSign = false
defaultConfig.versionCode = 1 // Why this value applied to assembleRelease?
}
release {
project.ext.loadSign = true
applicationVariants.all { variant ->
variant.outputs.each { output ->
def file = output.outputFile
output.outputFile = new File(file.parent, file.name.replace(".apk", "-" + defaultConfig.versionCode + ".apk"))
}
}
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
signingConfig signingConfigs.release
}
}
推薦答案
這是一個更新的版本:
android {
defaultConfig { ... }
applicationVariants.all { variant ->
if (variant.name == 'debug') {
variant.outputs.each { output ->
output.versionCodeOverride = 1
}
}
}
}
這篇關于使用不同的版本代碼進行調試/發布 android gradle build的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!