targetSdkVersion=28的除permission外的一些坑

1, 明文流量网络请求

CLEARTEXT communication to * not permitted by network

OkHttp3做了检查,所以如果使用了明文流量,默认情况下,在 Android P 版本 OkHttp3 就抛出异常
  • 在 AndroidManifest.xml 的application 标签加上
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 中移除且不可用于应用

  • 在AndroidManifest.xml文件中标签里面加入

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

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

  • 在AndroidManifest里面声明FileProvider,并且在xml中声明需要使用的uri路径

        

  • 对应的xml/file_paths中指定需要使用的目录


    

  • Android N以上,通过FileProvider获得文件Uri
 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

  • 在notify之前先创建notificationChannel
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没有反应,一闪而过

  • 增加新权限REQUEST_INSTALL_PACKAGES,此权限可能被厂商拒绝

  • Intent.ACTION_VIEW 改为 new Intent(Intent.ACTION_INSTALL_PACKAGE);

6 广播接收器

  • 静态注册的IntentFilter只有被豁免的能用
ACTION_LOCKED_BOOT_COMPLETED, ACTION_BOOT_COMPLETED
  • 尽量用动态注册
  • 一定要用静态注册,则发送广播的时候指定包名
  • 如果无法指定包名,发送广播的时候携带intent.addFlags(0x01000000); 即能让广播突破隐式广播限制

7 悬浮窗

  • 悬浮窗无权限使用以下Type
    • TYPE_PHONE
    • TYPE_PRIORITY_PHONE
    • TYPE_SYSTEM_ALERT
    • TYPE_SYSTEM_OVERLAY
    • TYPE_SYSTEM_ERROR
  • 相反,应用必须使用名为 TYPE_APPLICATION_OVERLAY 的新窗口类型
  • 需要新增权限

8 非全屏Activity不能设置orientation

  • 如果一个Activity的Style符合下面三个条件之一,认为不是“fullscreen”:
    • “windowIsTranslucent”为true;
    • “windowIsTranslucent”为false,但“windowSwipeToDismiss”为true;
    • “windowIsFloating“为true;

9 后台服务

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

你可能感兴趣的:(targetSdkVersion=28的除permission外的一些坑)