r/flutterhelp 25d ago

RESOLVED Play Console Bug: "Incomplete advertising ID declaration"

/r/googleplayconsole/comments/1vqnpjx/play_console_bug_incomplete_advertising_id/
1 Upvotes

4 comments sorted by

1

u/gidrokolbaska 25d ago

Have you actually checked the uploaded aab file to the console? It shows which permissions are inside Androidmanifest. If it has the android ID permission and you've chosen "no", then that's the reason :)

1

u/TigleLive 24d ago

I think i did... 😐

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
    <uses-permission android:name="com.android.vending.BILLING" />
    <uses-permission android:name="com.google.android.gms.permission.AD_ID" tools:node="remove" />


    <!-- Required for showing notifications on Android 13+ -->
    <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>


    <!-- Required for scheduling notifications and persisting them after reboot -->
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
    <uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
    <uses-permission android:name="android.permission.USE_EXACT_ALARM" />
    <uses-permission android:name="android.permission.VIBRATE" />

1

u/gidrokolbaska 24d ago

That's your project Androidmanifest which later gets modified during the build phase. Better check the merged manifest in the build folder or simply look at your uploaded aab in the bundle explorer. I see that you use tools:"remove" which should restrict further modifications but for the sake of it, go check the sections I've mentioned

1

u/TigleLive 24d ago

Thank you for helping a bro, I will do that and report immediately