my issue is related to permission. I do have app published to google store and Google reported that my app is using READ_EXTERNAL_STORAGE
. I am not able to detect this permission in my app using Manifest merger tool. I also went through all AndroidManifest.xml
in my project included libs added as dependencies but I can not see any READ_EXTERNAL_STORAGE
permission added to project.
I uploaded .aab file to App bundle explorer available in Google play developer page and they report permission issue onward.
Does anyone have idea what or where I should check my code?
I also try to remove this permission using
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:node="remove"/>
but it does not work for me. They still report that my app is using this permission.