Andreas Stütz
Andreas Stütz
@Drjacky @fairEnough83 is right, this requires a change for Android 13: https://developer.android.com/about/versions/13/behavior-changes-13#granular-media-permissions Seems like simply using `Manifest.permission.READ_MEDIA_IMAGES` for API level >= 33 inside `GalleryProvider.REQUIRED_PERMISSIONS` does the trick!
Tried it on the sample app and it works fine, UNTIL I switch the dependency from the local module to the latest maven artifact: ``` // implementation project(':imagepicker') implementation "com.github.Drjacky:ImagePicker:2.3.19"...
@Drjacky do you have any updates on this or is there any way I could help? In the meantime, maybe you can re-open the issue, since it's not actually fixed...
@Drjacky I opened a PR [here](https://github.com/Drjacky/ImagePicker/pull/76), which bumps AGP and Gradle versions and also fixes ktlint errors. Running `./gradlew :imagepicker:build` now works fine for me. Would be great if you'd...
Hey, I can confirm that 2.3.20 works fine now! I guess my PR is no longer needed then?