Android admob permissions
My Android app already has the following permission:
android.permission.INTERNET "
I want to use admob ads in ma app. I have seen many examples of how to use admob in android and always
android.permission.ACCESS_NETWORK_STATE "
...
Does anyone know if admob will work without ACCESS_NETWORK_STATE permission, as that would require me to add a different manifest.
thank
This permission basically lets admob check if you are connected to the internet or not.
without it it won't work
Seeing management literally declare
Making ad requests requires INTERNET and ACCESS_NETWORK_STATE network permissions, so they must be declared in the manifest as well
I would guess that this really does require permission ACCESS_NETWORK_STATE
. They don't just say they annoy their developers.