I'm struggling to understand the process of publishing an App that has AdMob ads in the Play Store.
In order to use the AdMob SDKs the app must be reviewed by AdMob. In order to review the App must be listed in a supported app store, in my case this will be the Play Store. In order to publish on the Play Store the policy declaration forms need to be filled in. For publishing within the EU, the policies require GDPR compliance one of which is to collect user consent. The problem is I'm collecting the consent using the UserMessagingPlatform SDK, which does not work unless the App is reviewed (according to UserMessagingPlatform invalid response from server)
So now there is a circular dependency:
- I cannot (truthfully) state that my app is GDPR compliant.
- This prevents my app from being published on the Play Store
- Which prevents the review by AdMob
- Which prevents the user consent form from working
- Which prevents me from stating that the app is GDPR compliant
One way to resolve this is publish an ad-free version first, review it by AdMob, then proceed by adding the ads.
Is this the intended workflow of publishing the app?