I implemented firebase analytics into an android app. I set <meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />
to disable the Advertising ID collection. (IDFA collection on iOS is also disabled, thus it makes sense to stay consistent, does it not?)
However, the <uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
still is added by firebase analytics. Thus, in order to submit my app i had to answer the question: Does your app use an advertising ID? with yes.
This seems odd to me. How do you guys handle this?
Also, what is the SSAID collection, and does it make sense to disable that too?