且构网

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

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

更新时间:2021-10-06 21:45:33

在Android清单中添加 android:requestLegacyExternalStorage ="true" 对我来说适用于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" ...