Google play console said “You can’t edit this app until you create a new app release declaring sensitive permissions” how to fix it?

In my case Google removed my app from production, to be able to submit a new release without using the sms i had to:

  • Retain the previous release (where i was using sms),
  • Because of the first step the permission form appeared,
  • I filled the form
  • Added the new apk (without sms)
  • Deactivated the old apk
  • Only then i was able to roll to production.

This is not the intended behavior based on the email i received from google when my app was removed:

Option 1) If your app does not require access to Call Log or SMS permissions:

Remove the specified permissions from your app’s manifest, or migrate to an alternative implementation, then publish the updated version of your app using the standard release process.

So adding the apk that do not have sms in it should work but it did not until i retained the old one, filled the form, and deactivated the old apk.

Leave a Comment