I have an application using Google Analytics through Google Play Services for Android. The application is configured to track a smaller group of users by setting the sampling rate. I did this using:
mTracker.setSampleRate(20.0d);
Like the documentation for Google Analytics Android. https://developers.google.com/analytics/devguides/collection/android/v4/advanced
In the past, this worked well for me, but recently I switched to Google Play Services com.google.android.gms: play-services: 7.3.0 . Since then, the number of users has increased dramatically, but only in analytics. Is there a problem with the sampling rate in the new version?
Regards, Kalle
source share