Google Q版本Android兼容性整改指导
https://developer.huawei.com/consumer/cn/doc/distribution/app/50127#h3-2-2-3-
TargetSdkVersion < 28有影响的特性
谷歌适配指导链接:https://developer.android.google.cn/distribute/best-practices/develop/target-sdk.html
重点关注以下特性:
(1)6.0:
(a)运行时权限:https://developer.android.google.cn/training/permissions/requesting.html
(2)7.0:
(a)低电耗模式和应用待机模式:https://developer.android.google.cn/training/monitoring-device-state/doze-standby.html
(b)文件共享需要使用FileProvider:https://developer.android.google.cn/training/secure-file-sharing/setup-sharing.html
(c)系统禁止链接到非 NDK 库:https://developer.android.google.cn/about/versions/nougat/android-7.0-changes.html#ndk
(3)8.0:
(a)后台执行限制:https://developer.android.google.cn/about/versions/oreo/background.html
(b)通知渠道:https://developer.android.google.cn/about/versions/oreo/android-8.0.html#notifications
(c)为每个应用签名密钥指定 ANDROID_ID:https://developer.android.google.cn/about/versions/oreo/android-8.0-changes.html#privacy-all
网友评论