Image Editor component asking WRITE_EXTERNAL_STORAGE permission

Hello,
The Image editor component is asking for WRITE_EXTERNAL_STORAGE
permission (thereby getting denied by Android 11+ devices) when I try to call a function.

I tried testing the app in two devices of Android version 9 and 11 respectively.

AIA

example.aia (83.6 KB)

APK

example.apk (5.2 MB)

I hope this issue gets fixed along with the issues in new file system.

Try this one:
example2.apk (5.2 MB)

Of course, this is the next bug
(relevant on Android 11+)

Thank You, this works fine!
May I know the procedure to fix my existing AIA?

And please let me know if I would face any security issues related to working of Image Editor in Google Play Store

There is no way to fix it with the aia.

You MUST decompile the APK and customize the Manifest:
The only way to do this is manually declaring it in the Manifest!

I see.
I edited the manifest and it works too
I followed this guide :

Replaced line <uses-permission android:maxSdkVersion="29" android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> with <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>in the manifest.

Thank You