Google Play: We found Ad SDKs in your application

前端 未结 3 1024
轮回少年
轮回少年 2020-12-03 03:29

Google has put a new option on their Pricing and Distribution page of their Google Play Developer Console that requires publishers to declare if they have ads or not. Our ap

3条回答
  •  情深已故
    2020-12-03 04:09

    I have follow below steps and It removes the notification

    First check that which gradle package contains "play-services-ads-identifier" package depency. You can add update those packages like below:

    implementation ('com.google.firebase:firebase-analytics') {
        exclude module: "play-services-ads-identifier"
    }
    

    Second, If you have analytics package in your gradle which contains ads then you have to follow these steps OR you can skip it. You can add below tag in your app's manifest's tag.

    
    

    Hope it will help you as well.

提交回复
热议问题