歡迎光臨
每天分享高質量文章

安卓 9.0 適配方案和踩坑

作者:安卓搬磚人

連結:https://www.jianshu.com/p/fd1c1c62582b

年初的時候就已經適配了安卓9.0,但由於業務需求一直沒有使用上,前段時間釋出了,結果有使用者反饋在安卓9.0的手機上更新下載App發生了閃退。這個時候發現9.0對許可權、加密和Apache HTTP client發生了相關變化。

一、首先我遇到的第一個錯誤是:

Caused by: java.lang.ClassNotFoundException: Didn't find class "org.apache.http.protocol.BasicHttpContext" on path: DexPathList”,查找了一下原因:

非Activity-Context啟動Activity,現在強制執行 FLAG_ACTIVITY_NEW_TASK 要求,Apache HTTP 客戶端棄用,影響採用非標準 ClassLoader 的應用。

在專案中用到了 Apache HTTP client 的相關類,就會丟擲找不到這些類的錯誤這是因為官方已經在 Android P 的啟動類載入器中將其移除,如果仍然需要使用 Apache HTTP client.

這種問題的解決方法有兩種:

  1. 在 Manifest 檔案中加入:

<uses-library
      android:name="org.apache.http.legacy"
      android:required="false" />
  1. 可以直接將 Apache HTTP client 的相關類打包進 APK 中。

二、第二個錯誤是:

CLEARTEXT communication to life.115.com not permitted by network security policy:
原因是:Android P 限制了明文流量的網路請求,非加密的流量請求都會被系統禁止掉;

解決方案:
第一步,在資源檔案新建xml目錄,新建檔案 network_security_config,名字可以自己命名。

 
<network-security-config> 
   <base-config cleartextTrafficPermitted="true" /> 
network-security-config>

 

第二步,在AndroidManifest中取用

<application
    android:name=".app.SophixStubApplication"
    android:allowBackup="true"
    android:icon="@mipmap/jycicon"
    android:label="@string/app_name"
    android:networkSecurityConfig="@xml/network_security_config"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

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

三、第三個問題就是:

android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

問題的原因是:Context中有一個startActivity方法,Activity繼承自Context,多載了startActivity方法。如果使用 Activity的startActivity方法,不會有任何限制,而如果使用Context的startActivity方法的話,就需要開啟一個新 的task,遇到上面那個異常的,都是因為使用了Context的startActivity方法。

解決辦法就是:
加一個flag,intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

其中這個地方我是用於下載apk的,具體的程式碼如下:

Intent intent2 = new Intent(Intent.ACTION_VIEW);
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
              intent2.setAction("android.intent.action.VIEW");
              intent2.addCategory("android.intent.category.DEFAULT");
              intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_GRANT_READ_URI_PERMISSION);
              Uri contentUri = FileProvider.getUriForFile(getApplicationContext(), "com.jyc99.jyc.fileprovider", responseInfo.result);
              intent2.setDataAndType(contentUri, "application/vnd.android.package-archive");
            } else {
              intent2.setAction("android.intent.action.VIEW");
              intent2.addCategory("android.intent.category.DEFAULT");
              intent2.setDataAndType(Uri.fromFile(responseInfo.result), "application/vnd.android.package-archive");
              intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            }

其中特別註意是:intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_GRANT_READ_URI_PERMISSION);

四、Android 9.0 加密報錯

問題原因:The Crypto provider has been deleted in Android P (and was deprecated in Android N), so the code will crash.

報錯程式碼:SecureRandom.getInstance(SHA1PRNG, “Crypto”),這個是因為Crypto provider 在Android9.0中已經被Google刪除了,呼叫的話就會發生crash。

使用如下方法生成SecretKeySpec 物件:

private static SecretKeySpec deriveKeyInsecurely(String password) { 
  byte[] passwordBytes = password.getBytes(StandardCharsets.US_ASCII);
  return new SecretKeySpec(InsecureSHA1PRNGKeyDerivator.deriveInsecureKey(passwordBytes, AESUtils.KEY_SIZE), "AES"); 
}

五、其他Api的修改

其中錯誤資訊是:

java.lang.IllegalArgumentException: Invalid Region.Op - only INTERSECT and DIFFERENCE are allowed

解決方案是:

if (Build.VERSION.SDK_INT >= 26) {
                    canvas.clipPath(mPath);
                } else {
                    canvas.clipPath(mPath, Region.Op.REPLACE);
                }

以上就是我在適配安卓9.0系統中所遇到的坑,每次安卓新版本釋出都需要充分瞭解其中更新的新特新,這樣可以避免少踩坑,少改bug。這些適配肯定還不夠完善,有補充的大神可以留言評論告知,謝謝了!

已同步到看一看
贊(0)

分享創造快樂