targetSdkVersion=28的除permission外

2019-06-25  本文已影响0人  RobinYeung

1, 明文流量网络请求

CLEARTEXT communication to * not permitted by network

OkHttp3做了检查,所以如果使用了明文流量,默认情况下,在 Android P 版本 OkHttp3 就抛出异常
android:usesCleartextTraffic="true"

2,apache 的 http 库在android 9.0删除。

java.lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/ProtocolVersion; Caused by: java.lang.ClassNotFoundException: Didn't find class "org.apache.http.ProtocolVersion"

在 Android 6.0 中,我们取消了对 Apache HTTP 客户端的支持。 从 Android 9 开始,默认情况下该内容库已从 bootclasspath 中移除且不可用于应用

<uses-library android:name="org.apache.http.legacy" android:required="false"/>

3 Android 7.0系统对file uri的暴露做了限制,加强了安全机制

android.os.FileUriExposedException file exposed beyond app through Intent.getData()

<provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="${applicationId}.fileProvider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths" />
</provider>
<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path
        name="download"
        path="yddownload"/>
</paths>
 public static Uri getUriForFile(Context context, File file) {
        Uri uriForFile;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            uriForFile = FileProvider.getUriForFile(context,
                    BuildConfig.APPLICATION_ID + ".fileProvider", file);
        } else {
            uriForFile = Uri.fromFile(file);
        }
        return uriForFile;
    }

4 开始要求notification必须知道channel

private void createNotificationChannel() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        CharSequence name = "下载提醒";
        String description = "显示下载过程及进度";
        int importance = NotificationManager.IMPORTANCE_DEFAULT;
        NotificationChannel channel = new NotificationChannel(DOWNLOAD_CHANNEL_ID, name, importance);
        channel.setDescription(description);
        mNotificationManager.createNotificationChannel(channel);
    }
}

5 7.0的手机安装没问题,但是在8.0上安装,app没有反应,一闪而过

<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>

6 广播接收器

ACTION_LOCKED_BOOT_COMPLETED, ACTION_BOOT_COMPLETED

7 悬浮窗

<uses-permission android:name="android.permission.SYSTEM_OVERLAY_WINDOW" />

8 非全屏Activity不能设置orientation

9 后台服务

从Android8.0开始,系统会对后台执行进行限制。初步判断由于我们应用在Application的onCreate过程中使用了IntentService来后台初始化一些任务,这个时候被系统认为是应用还处于后台,从而报出了java.lang.IllegalStateException错误。

上一篇 下一篇

猜你喜欢

热点阅读