且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Android 9.+ API 29:/storage/emulated/0/Pictures/myPic.png 打开失败:EACCES(权限被拒绝)

更新时间:2022-03-28 22:40:20

android:requestLegacyExternalStorage="true" 添加到 Android Manifest 对我来说适用于 Android 29

Adding android:requestLegacyExternalStorage="true" to the Android Manifest worked for me with Android 29

<application
    android:name=".MyApplication"
    android:allowBackup="true"
    android:requestLegacyExternalStorage="true" ...