DEV Community

赖赖
赖赖

Posted on

My Google Play App Update Was Rejected. What I Check Before Resubmitting

The app is already live, the new version has been tested, and then the rejection email arrives.

My first instinct used to be changing the code immediately. Now I usually stop and check a few things first.

  1. Read the rejection carefully

What exactly was flagged?

Permissions? User data? Privacy? Metadata? A specific feature?

I don't change unrelated parts of the app until I understand the actual issue.

  1. Check what changed

I compare the new version with the previous one.

New SDK? New permission? Analytics? Advertising? A different data flow?

Sometimes a small change creates a mismatch between the app and the information in Play Console.

  1. Check the store listing

Screenshots, descriptions and feature claims should match the current version.

If the app changed but the listing still shows an old feature, fix it before resubmitting.

  1. Review permissions and data disclosures

Make sure the permissions are actually necessary.

Then check Data Safety and the privacy policy against what the current version really does.

  1. Test the exact release build

I always test the build I'm actually submitting.

Especially login, permissions, core features, external links, and anything mentioned in the rejection.

Before resubmitting, I want clear answers to four questions:

What was flagged?

Why did it happen?

What did we change?

Why should it now comply?

If those answers aren't clear, I don't submit yet.

I also put together a more detailed guide here:

Google Play App Update Rejection Guide

Sometimes the best way to fix a rejection is to stop guessing and figure out what actually went wrong.

Top comments (0)