向Android8.0遷徙應用
阿新 • • 發佈:2019-01-08
自從google釋出必須適配Android8.0以來,小心肝都顫了顫,這回是真的有必要逼自己一把了,再也不能偷懶了,不開心。
之前為了方便把targetSdkVersion寫成22以下,醬就少了許可權的判斷和檔案uri的判斷,但是現在都要統統補上了。
不過適配8.0還是有必要的。經過一番折騰,終於完成了向Android8.0的遷移,總結為以下幾方面:
- Android studio更新
- 許可權判斷
- 檔案uri判斷
Android studio更新
作為一個沒有Android8.0以上手機的程式媛而言,就要使用as的模擬器了,然而Android 8.0 系統映像只能通過 Android Studio 3.0 Canary 下載,好吧,只能先更新我的AS了。大概有以下幾點注意:
- 修改gradle.properties
AAPT2 編譯報錯,AS3.0的aapt2預設情況下是開啟的,關上就OK了。
在gradle.properties最後新增下行程式碼:
android.enableAapt2=false
- 修改專案下build.gradle
倉庫位置調整到google,需要在配置倉庫的地方加入google()
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
google()
}
}
- 修改app下build.gradle
compileSdkVersion 26
buildToolsVersion '26.0.2'
然後坐等AS更新成功
許可權判斷
網上有很多許可權判斷的三方庫,推薦一個較好用的:
https://github.com/googlesamples/easypermissions
用法就自己看吧,還是比較簡單的
檔案許可權更改
為了提高私有檔案的安全性,面向 Android 7.0 或更高版本的應用私有目錄被限制訪問,因此,問題出來了,常見的下載更新和拍照就會出現FileUriExposedException錯誤,具體詳見: https://developer.android.google.cn/about/versions/nougat/android-7.0-changes.html
要在應用間共享檔案,您應傳送一項 content:// URI,並授予 URI 臨時訪問許可權。進行此授權的最簡單方式是使用 FileProvider 類。
其實很簡單了,修改以下:
1,清單檔案application下新增:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="自己的包名.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
2.在res下新建資料夾xml,在xml中新建檔案file_paths:
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path
name="files_root"
path="Android/data/自己的包名/" />
<external-path
name="external_storage_root"
path="." />
</paths>
3.使用
//下載成功,覆蓋原來的apk
Intent intent = new Intent();
intent.setAction("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
Uri uri = FileProvider.getUriForFile(mContext,
BuildConfig.APPLICATION_ID + ".fileprovider", file);
intent.setDataAndType(uri,
"application/vnd.android.package-archive");
} else {
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(Uri.fromFile(response.body()),
"application/vnd.android.package-archive");
}
mContext.startActivity(intent);
然後就算成功開始8.0開發了。