- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我刚发现PackageInfo.versionCode
在 Android Pie 中已弃用。他们指出您使用 PackageInfo.getLongVersionCode()
反而。这个新方法的 JavaDoc 是:
Return
versionCode
andversionCodeMajor
combined together as a single long value. TheversionCodeMajor
is placed in the upper 32 bits.
但是versionCodeMajor
是什么?我该如何使用它? versionCodeMajor
和旧的 versionCode
有什么区别?
它的文档几乎什么都没说:
Internal major version code. This is essentially additional high bits for the base version code; it has no other meaning than that higher numbers are more recent. This is not a version number generally shown to the user, that is usually supplied with R.attr.versionName.
最佳答案
到目前为止,我发现使用 Android Studio 3.2.1 设置 versionCodeMajor
的唯一方法是通过 AndroidManifest.xml
并禁用 InstantRun.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:versionCodeMajor="8" [...]
'因为在 build.gradle
文件中设置它
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.xxx.myapplicationp"
minSdkVersion 'P'
targetSdkVersion 'P'
versionCode 127
//versionCodeMajor 8
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
Could not find method versionCodeMajor() for arguments
因此,在 AndroidManifest.xml
中设置了您选择的主要版本代码并禁用了 InstantRun 然后您可以通过以下方式获取它:
static long getAppVersionCode(Context context) throws PackageManager.NameNotFoundException {
PackageInfo pinfo = context.getPackageManager().getPackageInfo(context.getPackageName(), 0);
long returnValue = Long.MAX_VALUE;
//if (Build.VERSION.SDK_INT < Build.VERSION_CODES.P) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.P
&& !"P".equals(Build.VERSION.CODENAME) /* This 'cause the dev preview */) {
returnValue = pinfo.versionCode;
} else {
returnValue = pinfo.getLongVersionCode();
Log.d("AAA", "Full long value: " + returnValue);
Log.d("AAA", "Major Version Code (your chosen one) " + (returnValue >> 32)); // 8 in this scenario
Log.d("AAA", "Version Code (your chosen one) " + (int)(returnValue & 0x00000000ffffffff)); // 127 in this scenario
}
return returnValue;
}
或者你可以使用 PackageInfoCompat像那样:
static long getAppVersionCode(Context context) throws PackageManager.NameNotFoundException {
PackageInfo pinfo = context.getPackageManager().getPackageInfo(context.getPackageName(), 0);
long returnValue = Long.MAX_VALUE;
returnValue = PackageInfoCompat.getLongVersionCode(pinfo);
if (BuildConfig.DEBUG) {
int majorCode = (int)(returnValue >> 32);
int versionCode = (int)(returnValue & 0x00000000ffffffff); // or simply returnValue
Log.d("AAA", "Full long value: " + returnValue);
Log.d("AAA", "Major Version Code (your chosen one) " + majorCode); // 8 in this scenario
Log.d("AAA", "Version Code (your chosen one) " + versionCode); // 127 in this scenario
}
return returnValue;
}
这应该回答如何使用它或一种方式。
何时以及为何使用它...我想这取决于您...正如您指出的那样,文档没有告诉您为什么应该使用它。文档说你应该只向你的用户展示众所周知的版本号。
我猜他们向 versionCode 添加了更多位,因为他们需要更多的数字来进行版本控制 ^^”
就是说,如果您没有在 AndroidManifest.xml
或 build.gradle
文件中设置 versionCodeMajor
(当它将处理它)或者您将其设置为 0
然后此值与旧的 versionNumber
弃用字段相同。
关于android - 什么是 versionCodeMajor?和 versionCode 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52630237/
我刚发现PackageInfo.versionCode在 Android Pie 中已弃用。他们指出您使用 PackageInfo.getLongVersionCode()反而。这个新方法的 Java
我是一名优秀的程序员,十分优秀!