I have an application on play store to whom the targetSdkVersion
is update to 30
from 29
, which is getting rejected again and again by Google Play after an update.
Previously, there was a permission of MANAGE_EXTERNAL_STORAGE
in one of the SDK Manifest.
After removing MANAGE_EXTERNAL_STORAGE
permission and storage permission (WRITE_EXTERNAL_STORAGE
) completely from my app, uploading the app on store, app update gets rejected again.
This is the email received from Google Play for the rejection reason.
Note: I am saving all my media files in app-specific internal storage.
Also, I have the permission of READ_EXTERNAL_STORAGE
in my SDK as we have chat feature in our app to get images and videos of device to sent it.
According to Use of All files access (MANAGE_EXTERNAL_STORAGE) permission
READ_EXTERNAL_STORAGE
permission has not impact.
Update
I also removed READ_EXTERNAL_STORAGE
permission from the app, but still got the rejection with same reason from Google Play.
Is the issue with Storage Policy, or something else?