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?
Hey there, I'm running into the exact same problem. Our setup already does what's mentioned on the comment above (regarding `androidx.startup`) but still `Qonversion.shared.offerings` never calls any of the `onSuccess`...
Hi @SpertsyanKM, I uploaded a minimal sample project on GitHub: https://github.com/astuetz/qonversion-workmanager-sample See the readme for steps to reproduce. Our use case for getting the offerings inside a Worker would be...
Hey! Strange that it behaves differently for you. I'm running this on a Pixel 6 Pro with Android 14. Did you wait long enough after kicking the app? You might...
Hey! I mentioned it briefly on a previous comment. I need to show a "discount" notification (x hours before the discount runs out) to a user and wanted to get...
👋🏻 It's been a while, are there any updates on this?