You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As Google Play Store already requires target API level 30 for app updates and new publications, I wanted to update my app.
I found out that as of API level 30
requestLegacyExternalStorage="true"
which was a recommended workaround for android target API level 29 (#74 (comment)) is not allowed anymore.
This results in an error after cropping the image that reads:
open /storage/emulated/0/Pictures/Title - Sun Mar 13 16-23_45 GMT+01_00 2000.jpg: open failed: EACCES (Permission denied)
Theoretically there would be the option to ask for MANAGE_EXTERNAL_STORAGE permission, but this is only possible as of Android 11 and if one wants to publish on Google Play Store the request to use this will probably be rejected by Google.
There seem to be different solutions on how to manage file access now as outlined here: https://developer.android.com/training/data-storage/use-cases#share-media-all
but I can't judge what would be applicable to this plugin and definitely it would require the change of the code (and I am not capable to program in Java).
The text was updated successfully, but these errors were encountered:
As Google Play Store already requires target API level 30 for app updates and new publications, I wanted to update my app.
I found out that as of API level 30
requestLegacyExternalStorage="true"
which was a recommended workaround for android target API level 29 (#74 (comment)) is not allowed anymore.
This results in an error after cropping the image that reads:
Theoretically there would be the option to ask for MANAGE_EXTERNAL_STORAGE permission, but this is only possible as of Android 11 and if one wants to publish on Google Play Store the request to use this will probably be rejected by Google.
There seem to be different solutions on how to manage file access now as outlined here:
https://developer.android.com/training/data-storage/use-cases#share-media-all
but I can't judge what would be applicable to this plugin and definitely it would require the change of the code (and I am not capable to program in Java).
The text was updated successfully, but these errors were encountered: