Android 10 获取相册图片失败

Android10获取相册图片失败

报错open failed: EACCES:需要在 AndroidManifest.xml 中加入 android:requestLegacyExternalStorage=“true

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:requestLegacyExternalStorage="true"
    android:theme="@style/AppTheme">

你可能感兴趣的:(Android,Java,Kotlin)