android-multipicker-library icon indicating copy to clipboard operation
android-multipicker-library copied to clipboard

Android Multipicker Library

Results 84 android-multipicker-library issues
Sort by recently updated
recently updated
newest added

Using onActivityResult for permission response in a fragment, but now it's deprecated. Trying to using `` registerForActivityResult( ActivityResultContracts.StartActivityForResult() ) { result -> if (result.resultCode == Activity.RESULT_OK) { } }`` but...

This issue happens when you select an image from the gallery/downloads. But if you use it via camera, it works fine. Tried latest 1.6.2 version ![115588934-44a28980-a29d-11eb-9b19-5520aecfd323](https://user-images.githubusercontent.com/30085819/117504859-1dacae80-af51-11eb-9a52-cff3d1f8ec78.png)

When an app is targeting SDK 30 the problem occurs. Library throws exception while selecting image from gallery. `com.kbeanie.multipicker.api.exceptions.PickerException: java.io.FileNotFoundException: /storage/emulated/0/.../IMG_20210608_12494-2.jpg: open failed: EPERM (Operation not permitted) ` ... -...

Hi I am using your library. I am getting path uri correctly from gallery. But when I select video from ES File Explorer it is giving Security Exception in 10...

FileUtils.getExternalFilesDir shouldn't require the WRITE_EXTERNAL_PERMISSION as this permissions is not needed for Context.getExternalFilesDir https://developer.android.com/reference/android/content/Context#getExternalFilesDir(java.lang.String) It should match the current implementation of FileUtils.getExternalCacheDir(getContext());

Getting `E/AndroidRuntime: FATAL EXCEPTION: main Process: com.kbeanie.multipicker.sample, PID: 12657 java.lang.RuntimeException: Unable to get provider com.kbeanie.multipicker.utils.AMPFileProvider: java.lang.IllegalArgumentException: Missing android.support.FILE_PROVIDER_PATHS meta-data at android.app.ActivityThread.installProvider(ActivityThread.java:6288) at android.app.ActivityThread.installContentProviders(ActivityThread.java:5851) at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5772) at android.app.ActivityThread.-wrap1(Unknown Source:0) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1661)...

Hi after updating your library I m able to get videos path using "getOriginalPath()" method, I m getting path like this "content://com.android.providers.media.documents/document/video%3A128" how to get exact path from this one.

How can i change the temprory saved thumb folder.its really annoying to user .its always visible to gallery. or how can i add .(dot) for hiding

I'm using same instance of ImagePicker class in my Activity where some view pick multiple and some pick single image. The problem is when I call the method imagePicker.allowMultiple() it...

enhancement