We mirgrated from GCM to FCM without any problems. The notification service is running very well. However, we have to disable the app measurement part of the Firebase Analytics service for legal reasons.
We used this guide to disable the analytics part https://firebase.google.com/support/guides/disable-analytics
So we put this flag to the manifest file:
<meta-data android:name="firebase_analytics_collection_enabled" android:value=false />
and we also disabled the collection programmatically:
FirebaseAnalytics.getInstance(this).setAnalyticsCollectionEnabled(false);
Unfortunately, data is still collected and we can see new events in the Firebase Analytics Console. Is there any possibility to turn off the analytics services completely?
Thanks for your help.
Edit: I also have the deactivation meta-data in the application tag:
<meta-data android:name="firebase_analytics_collection_deactivated" android:value=true />