I'm getting the following error when trying to submit my app to the Play Store:
Your declaration on Play Console says that your app uses advertising ID. Your manifest file doesn't include the com.google.android.gms.permission.AD_ID permission.
I've already declared the AD_ID
permission in my AndroidManifest.xml
file, as follows:
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
My app's targetSdk
version is 33
and the AdMob ads library version that I have included is 21.3.0
, as follows:
implementation 'com.google.android.gms:play-services-ads:21.3.0'
I've follow every step in the AdMob Get Started guide and it doesn't work.