Android P(API 28)适配需要哪些代码更改

Android P(API 28)适配需要哪些代码更改

最好的文档依据为:
google官方文档:行为变更:以 API 级别 28+ 为目标的应用
google官方文档:将应用迁移到 Android 9

下面来介绍Android P(API 28)适配,我们的App 需要做哪些更改:

  • 1、targetSdkVersion 28
  • 2、前台服务: 使用 Service 需添加普通权限 FOREGROUND_SERVICE
  • 3、隐私权变更: Build.SERIAL 变更为 getSerial() 并需请求权限 READ_PHONE_STATE
  • 4、框架安全性变更: http请求限制
  • 5、按进程分设基于网络的数据目录: WebView.setDataDirectorySuffix(processName);
  • 6、Apache HTTP 客户端弃用: 按需求添加依赖库: org.apache.http.legacy
  • 7、对非 SDK 接口的限制:尝试访问受限制的接口时,会生成 NoSuchFieldException 和 NoSuchMethodException 之类的错误
  • 8、移除加密提供程序:SecureRandom.getInstance("SHA1PRNG", "Crypto") 将会引发 NoSuchProviderException

一、targetSdkVersion 28

android {
    compileSdkVersion 28
    buildToolsVersion '28.0.0'
    defaultConfig {
        // ...
        targetSdkVersion 28
        // ...
    }
}
compile 'com.android.support:appcompat-v7:28.0.0'
compile 'com.android.support:support-v4:28.0.0'
compile 'com.android.support:support-annotations:28.0.0'
compile 'com.android.support:recyclerview-v7:28.0.0'
compile 'com.android.support:gridlayout-v7:28.0.0'
compile 'com.android.support:cardview-v7:28.0.0'
compile 'com.android.support:design:28.0.0'

二、前台服务


 

三、隐私权变更

Build.SERIAL 变更为 getSerial() 并需请求权限 READ_PHONE_STATE

四、框架安全性变更

放开http请求限制:

AndroidManifest.xml


/res/xml/network_security_config.xml


    
         
             
             
        
    

五、按进程分设基于网络的数据目录

重写 Application,并添加

/**
 * android p 适配
 */
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
    String processName = getProcessName(this);
    // 判断不为主进程
    if (!"com.xiaxl.test".equals(processName)){
        WebView.setDataDirectorySuffix(processName);
    }
}

// 进程判断
public  String getProcessName(Context context) {
    if (context == null) return null;
    ActivityManager manager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
    for (ActivityManager.RunningAppProcessInfo processInfo : manager.getRunningAppProcesses()) {
        if (processInfo.pid == android.os.Process.myPid()) {
            return processInfo.processName;
        }
    }
    return null;
}

六、Apache HTTP 客户端弃用

若仍然使用,则AndroidManifest.xml


	// 任使用apache
	

七、对非 SDK 接口的限制

尝试访问受限制的接口时,会生成 NoSuchFieldException 和 NoSuchMethodException 之类的错误

八、移除加密提供程序

SecureRandom.getInstance(“SHA1PRNG”, “Crypto”) 将会引发 NoSuchProviderException

你可能感兴趣的:(Android代码)