Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

I couldn't publish my new released on google play console this morning. It has shown,

"You can't edit this app until you create a new app release declaring sensitive permissions"

And it does not provide the option to fix. Does anyone know how to fix it?

enter image description here

like image 332
stayfighter Avatar asked Jan 25 '19 07:01

stayfighter


People also ask

How do I remove sensitive permissions from console?

Try to examine Artifact library in your play console. Click on version code's down arrow of apk/bundle file and check for required permissions section, are still able to see call,sms permissions? If yes, you need to check manifest file again and remove sensitive permissions.


1 Answers

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.

like image 191
George Avatar answered Sep 19 '22 17:09

George