I am integrating Appsweep on my Flutter Application. I have the following issue: getExternalMediaDirs is not secure as any application can contribute new media to MediaStore without any permission. How can I solve this issue? I am not directly using this method, so I couldn't find it in my project. [Image attached] (https://i.stack.imgur.com/2U2GR.png)
I have also integrated DexGuard, but couldn't found any solution for this issue.
the quickest way to get answers for AppSweep related issues is to use the chatbot on the bottom right of the AppSweep page. Then you can talk to someone from the team directly, and we can help directly on the scan.
For the specific issue: The Flutter SDK seems to contain a call to
getExternalMediaDirs
. This method is deprecated (see https://developer.android.com/reference/android/content/Context#getExternalMediaDirs()). If your app does not use any local storage to such folders, it could be ok, but to be sure, you'd need to figure out where Flutter actually uses this folder.