ParkSangGwon / TedBottomPicker

TedBottomPicker is simple image picker using bottom sheet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Images don't load on Android 10+

ishaansrm opened this issue · comments

When targetSdkVersion is 29 or 30, the images don't load in the bottom sheet due to permissions failure (scoped storage in Android 10) even when WRITE_EXTERNAL_STORAGE permission is granted

have the same issue

me too

set requestLegacyExternalStorage flag to true in the manifest file application tag then it works in API 29 for API 30 we need to change the code with scoped storage.

<uses-permission
    android:name="android.permission.WRITE_EXTERNAL_STORAGE"
    tools:ignore="ScopedStorage" />

this works with me , just add it in manifest


Is this working with android 11 ?

I didn't test it , but I think it will work

我也有这个问题,请作者能不能升级一下这个库,使其兼容Android10

I tested it on android 11 and it works for me