-
Notifications
You must be signed in to change notification settings - Fork 48
Android 13 Permissions Issue #26
Comments
Any update on this issue? |
well we manage to find a workaround this issue, before calling the BottomSheetImagePicker.Builder we added the pickMultipleMedia native method. if(Build.VERSION.SDK_INT >= 33) { final product for this was the following : if(ContextCompat.checkSelfPermission(requireContext(), permission.READ_MEDIA_IMAGES) == PackageManager.PERMISSION_GRANTED || ContextCompat.checkSelfPermission(requireContext(), permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) {
|
pls upgrade this library for android api 33 and more!!! this is not work for me |
Please migrate your apps to I'm gonna archive this repo, because it does not make sense anymore to maintain nowadays. |
Since Android 13 removed the storage permission, the BottomSheetImagePicker.Builder is no longer working because when it goes to BottomSeetImagePicker's onCreate, it goest into the else of the ReadStoragePermission has if it had no permission and get's stuck on a loop on PermissionUtils, because android 13 does not ask for that permission
The text was updated successfully, but these errors were encountered: