Google PlayStore 警告:更新完成后,他们将不再安装针对 22 版 SDK 或更早版本的 APK
Google PlayStore warning : once the update is complete, they will no longer install APK targeting 22 version of the SDK or earlier
从 PlayStore 收到以下警告,这是什么意思?
Users with version 15 of the APK (targeting 22 version of the SDK or earlier) will perform the update. However, once the update is complete, they will no longer install APK targeting 22 version of the SDK or earlier.
Trick
If this change is desired, make sure that users doing in the future to update this APK to spend 23 or later.
旧版本详细信息:
android:minSdkVersion="18"
android:targetSdkVersion="19"
android:compileSdkVersion="21"
最新版本详情:
android:minSdkVersion="18"
android:targetSdkVersion="25"
android:compileSdkVersion="25"
目标 API 23 或更高意味着你必须 request dangerous permissions at runtime。警告仍然存在,这是一种单向切换:一旦切换到运行时权限模型,就无法恢复到 API 22 或更早的目标。 Dev Console 只是确认您确实想要进行永久切换。
从 PlayStore 收到以下警告,这是什么意思?
Users with version 15 of the APK (targeting 22 version of the SDK or earlier) will perform the update. However, once the update is complete, they will no longer install APK targeting 22 version of the SDK or earlier.
Trick
If this change is desired, make sure that users doing in the future to update this APK to spend 23 or later.
旧版本详细信息:
android:minSdkVersion="18"
android:targetSdkVersion="19"
android:compileSdkVersion="21"
最新版本详情:
android:minSdkVersion="18"
android:targetSdkVersion="25"
android:compileSdkVersion="25"
目标 API 23 或更高意味着你必须 request dangerous permissions at runtime。警告仍然存在,这是一种单向切换:一旦切换到运行时权限模型,就无法恢复到 API 22 或更早的目标。 Dev Console 只是确认您确实想要进行永久切换。