I'm building an app that downloads an image from an outside API and saves it to external storage so another app has access to it. With the new storage permission changes (mainly WRITE_EXTERNAL_STORAGE not existing or returning denied automatically), I'm unable to find a way to do this. Even saving to the media directory (images) would be okay, but I'm yet to find any samples on how to do this in MAUI. I've tried with the FileSaver package from the Community toolkit, but it simply doesn't work (since it requires the write permission which returns denied every time).
Has anyone managed to get it working? This is a question about the WRITE scenario, I've seen plenty of workarounds for reading but none of them seem to work.
Thanks!