-
In my Flutter project, I have 2 flavors: free and full. Only the free version comes with a Google ad banner. So I added the Then I went to my Google Play console, and I got the error : So I add 2 new Here is the content of the manifest in the <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mistikee.mistikee.mistikee">
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
</manifest> And here is the content of the manifest in the <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mistikee.mistikee.mistikee">
</manifest> Then I launched a new build on Codemagic ( How can I fix that, without going to the console telling that I use the advertising ID (because, again, I don't use it in the full version)? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After some research, it's apparently not a problem. |
Beta Was this translation helpful? Give feedback.
After some research, it's apparently not a problem.
When you see the error in the Google Play Console, you have to tell that, even though your apps contains ads (or, at least, need the AD_ID permission), it's only because your app needs that to work and not for actual ads.