LearnToday
LearnToday

Reputation: 2902

How to remove sensitive permissions to allow for app update google play console

For a couple of months, I tried updating an app. The thing is I wanted to use the SMS permissions.

To do I had to fill the sensitive permission form in google play console.

After doing that, my app was rejected.

Fast forward, I decided to take my app project a different route. I don't need the Sms functionality anymore.

I have removed the permissions from my android manifest, bump my app version. Uploaded a new version and only for it to be rejected for the same permission reason. enter image description here

Which I thought was weird because I am not seeking the permissions anymore for my app.

I checked the App Content tab, and I could see that there is some permission stuff still going on with my app. enter image description here

Unfortunately, for some unknown reason, Google isn't offering any means of deactivating or removing the permissions from the play console.

I am unable to update my app for this reason. I have tried to make contact with the play team, but they haven't gotten back to me for some reason.

I am wondering if there is a fix for this? I have tried all that I could find online on the permission problem but nothing has seemed to work out. enter image description here

Upvotes: 14

Views: 19876

Answers (3)

Savvy Turtle
Savvy Turtle

Reputation: 11

You also can get your app approved without uploading a new APK/AAB, just go to App content scroll down and find Sensitive permissions and APIs and change your declaritions and submit your app for review and Google will send it in production.

Upvotes: 0

Scott J. Swindell
Scott J. Swindell

Reputation: 169

I was having the same issue. It turns out, it's because I had an old APK that still used that permission in another release track. The trick is to upload new APKs to all release tracks that have old APKs in them.

Here's the article that provides more details: Dear Google’s Permissions Declaration Form, Can We Break Up?

Upvotes: 16

Priyanka
Priyanka

Reputation: 1875

This issue can be resolved by removing sms, call permissions from manifest and create signed apk/bundle again for uploading to playstore.

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.

Upvotes: 2

Related Questions