Is my app or its dependencies violating the Android Advertising Id policy?

后端 未结 19 2172
星月不相逢
星月不相逢 2020-11-28 00:49

I\'ve just received this message from Google Play but I\'m not collecting the Advertising ID.

Reason for warning: Violation of Usage of Android Advert

19条回答
  •  隐瞒了意图╮
    2020-11-28 01:25

    Disable advertising id collection

    According to the Firebase docs you can disable advertising id collection by setting:

    
    

    in your AndroidManifest.xml under the tag.

    EDIT: It seems like people are having mixed success with this approach. Try adding configurations { all*.exclude group: 'com.google.firebase', module: 'firebase-core' all*.exclude group: 'com.google.firebase', module: 'firebase-iid' } to the Gradle app dependencies area as per comment below.

提交回复
热议问题