如果我们使用多个 APK,BuildConfig.VERSION_CODE 不会改变吗
Does BuildConfig.VERSION_CODE not get changed if we are using multiple APK's
我正在为每个 ABI
创建 multiple apk's,我这样做是为了为每个 apk 分配单独的版本代码。
ext.abiCodes = ['armeabi-v7a':1, mips:2, x86:3]
import com.android.build.OutputFile
android.applicationVariants.all { variant ->
variant.outputs.each { output ->
def baseAbiVersionCode =
project.ext.abiCodes.get(output.getFilter(OutputFile.ABI))
if (baseAbiVersionCode != null) {
output.versionCodeOverride =
baseAbiVersionCode * 1000 + variant.versionCode
}
}
}
这是我的dafaultConfig
,下面的versionCode
是给universalApk
defaultConfig {
versionCode 74
versionName "1.0.2"
}
我在每个服务请求中附加 versionCode
,我还在其中一个 activity 中显示 versionCode
。所以我需要正确的 versionCode
来执行这些操作,我使用这段代码来获取 versionCode
int versionCode = BuildConfig.VERSION_CODE;
现在的问题是,它显示 defaultConfig
中所述的 versionCode
而不是实际代表构建的那个。
我需要知道如何获得分配给此版本的 versionCode
,它可能大于 1000
,而不是 [=] 中分配的那个15=]
要检查版本代码,您可以使用 PackageInfo 和 PackageManager
try {
PackageInfo pInfo = this.getPackageManager().getPackageInfo(getPackageName(), 0);
String version = pInfo.versionName; //version name
int verCode = pInfo.versionCode; //version code
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
您不应该阅读构建配置文件,构建配置文件将显示默认配置。
你应该使用 PackageInfo
try {
PackageInfo pInfo = this.getPackageManager().getPackageInfo(getPackageName(), 0);
String version = pInfo.versionName;
Log.e("name","name"+version);
Log.e("Code","code"+pInfo.versionCode);
}catch (Exception e){
e.printStackTrace();
}
对于 armeabi-v7a 将显示 1001,对于 mips 将显示 1002,对于 x86 将显示 1003
我问了类似的问题here。
由于访问 BuildConfig.VERSION_CODE
似乎比访问 PackageInfo
更便宜,我想了一个变通方法来继续使用 BuildConfig.java 来检索这些中的 versionCode
在某些情况下,它不像我们之前使用 mergedFlavor.versionCode
覆盖 BuildConfig.VERSION_CODE
那样好,但由于进行此更改是为了缩短构建时间,我非常乐意接受它。
首先你应该在每个口味中设置 versionCode
而不是 defaultConfig
,例如:
flavorDimensions 'default'
productFlavors {
hellotest {
versionCode 20
}
hellotest1 {
versionCode 10
}
}
然后从上面更新你的代码:
ext.abiCodes = ['armeabi-v7a':1, mips:2, x86:3]
import com.android.build.OutputFile
android.applicationVariants.all { variant ->
// Get the versionCode statically defined in each flavor.
def versionCode = variant.productFlavors.get(0).versionCode
// Create a custom buildConfigField with the versionCode
variant.buildConfigField('int', 'OVERRIDEN_VERSION_CODE', "${versionCode}")
variant.outputs.each { output ->
def baseAbiVersionCode =
project.ext.abiCodes.get(output.getFilter(OutputFile.ABI))
if (baseAbiVersionCode != null) {
output.versionCodeOverride =
baseAbiVersionCode * 1000 + variant.versionCode
// Update the BuildConfig.OVERRIDEN_VERSION_CODE with the new versionCode.
// OVERRIDEN_VERSION_CODE is just an example name, you can give the name you want.
variant.buildConfigField('int', 'OVERRIDEN_VERSION_CODE', "${output.versionCodeOverride}")
}
}
}
在此之后,您将在项目的任何位置通过 BuildConfig.OVERRIDEN_VERSION_CODE
访问正确的 versionCode
。
我正在为每个 ABI
创建 multiple apk's,我这样做是为了为每个 apk 分配单独的版本代码。
ext.abiCodes = ['armeabi-v7a':1, mips:2, x86:3]
import com.android.build.OutputFile
android.applicationVariants.all { variant ->
variant.outputs.each { output ->
def baseAbiVersionCode =
project.ext.abiCodes.get(output.getFilter(OutputFile.ABI))
if (baseAbiVersionCode != null) {
output.versionCodeOverride =
baseAbiVersionCode * 1000 + variant.versionCode
}
}
}
这是我的dafaultConfig
,下面的versionCode
是给universalApk
defaultConfig {
versionCode 74
versionName "1.0.2"
}
我在每个服务请求中附加 versionCode
,我还在其中一个 activity 中显示 versionCode
。所以我需要正确的 versionCode
来执行这些操作,我使用这段代码来获取 versionCode
int versionCode = BuildConfig.VERSION_CODE;
现在的问题是,它显示 defaultConfig
中所述的 versionCode
而不是实际代表构建的那个。
我需要知道如何获得分配给此版本的 versionCode
,它可能大于 1000
,而不是 [=] 中分配的那个15=]
要检查版本代码,您可以使用 PackageInfo 和 PackageManager
try {
PackageInfo pInfo = this.getPackageManager().getPackageInfo(getPackageName(), 0);
String version = pInfo.versionName; //version name
int verCode = pInfo.versionCode; //version code
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
您不应该阅读构建配置文件,构建配置文件将显示默认配置。
你应该使用 PackageInfo
try {
PackageInfo pInfo = this.getPackageManager().getPackageInfo(getPackageName(), 0);
String version = pInfo.versionName;
Log.e("name","name"+version);
Log.e("Code","code"+pInfo.versionCode);
}catch (Exception e){
e.printStackTrace();
}
对于 armeabi-v7a 将显示 1001,对于 mips 将显示 1002,对于 x86 将显示 1003
我问了类似的问题here。
由于访问 BuildConfig.VERSION_CODE
似乎比访问 PackageInfo
更便宜,我想了一个变通方法来继续使用 BuildConfig.java 来检索这些中的 versionCode
在某些情况下,它不像我们之前使用 mergedFlavor.versionCode
覆盖 BuildConfig.VERSION_CODE
那样好,但由于进行此更改是为了缩短构建时间,我非常乐意接受它。
首先你应该在每个口味中设置 versionCode
而不是 defaultConfig
,例如:
flavorDimensions 'default'
productFlavors {
hellotest {
versionCode 20
}
hellotest1 {
versionCode 10
}
}
然后从上面更新你的代码:
ext.abiCodes = ['armeabi-v7a':1, mips:2, x86:3]
import com.android.build.OutputFile
android.applicationVariants.all { variant ->
// Get the versionCode statically defined in each flavor.
def versionCode = variant.productFlavors.get(0).versionCode
// Create a custom buildConfigField with the versionCode
variant.buildConfigField('int', 'OVERRIDEN_VERSION_CODE', "${versionCode}")
variant.outputs.each { output ->
def baseAbiVersionCode =
project.ext.abiCodes.get(output.getFilter(OutputFile.ABI))
if (baseAbiVersionCode != null) {
output.versionCodeOverride =
baseAbiVersionCode * 1000 + variant.versionCode
// Update the BuildConfig.OVERRIDEN_VERSION_CODE with the new versionCode.
// OVERRIDEN_VERSION_CODE is just an example name, you can give the name you want.
variant.buildConfigField('int', 'OVERRIDEN_VERSION_CODE', "${output.versionCodeOverride}")
}
}
}
在此之后,您将在项目的任何位置通过 BuildConfig.OVERRIDEN_VERSION_CODE
访问正确的 versionCode
。