Google recently started tagging Google Play apps with special-label ads. I asked to set a flag in the developer console if there are ads in my application or not. However, when I set it to NO - a hint is displayed that the active APK is associated with the AdMob SDK, so the application is supposed to be advertised. There is no AdMob SDK in the gradle dependencies, only Google Analytics and Maps.
I suppose the Google Analytics SDK is somehow dependent on AdMob. Is there any way to exclude hidden AdMob dependencies from my application?
Update:
gradle settings look like this:
compile 'com.google.android.gms:play-services-analytics:8.1.0' compile 'com.google.android.gms:play-services-maps:8.1.0'
source share