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?
My Android rejected build is approved finally after 3 weeks of headache.
Basically, Google was checking old APK, if it is available in any of the track (Internal, Open, Closed or Production) with Policy Violation.
So, in this regard you have to roll out the app to 100% in the track which has this Policy violation. Which will deactivate the old build.
I wasn't rolling out the new app to 100%.
Thanks to Google Policy Team.