Recently, I got this message from google in the google play console:
"Until you complete this section, you can't target Android 13
Help us understand whether your app uses advertising ID. You will not be able to submit releases targeting Android 13 until you complete this section."
Admob is integrated in my app.
the question is: how to know if my app is using advertising ID or not?
CodePudding user response:
Google AdMob: Device or other IDs :
- Collected? Yes
- Shared? Yes
- Processed ephemerally? No
- Required or Optional? Optional
You should fill these answers.
CodePudding user response:
For apps targeting Android 13 you need to include this permission:
<manifest>
<application>
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/>
<-- For apps targeting Android 13 or higher & GMA SDK version 20.3.0 or lower -->
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
</application>
</manifest>
For further info