What are the permissions AdMob requires in android

前端 未结 3 1775
一向
一向 2021-01-18 18:27

On Google’s site they only mention two of them:




        
相关标签:
3条回答
  • 2021-01-18 18:39
       <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    

    this way you will get ads from the area(country) where the device is located

    0 讨论(0)
  • 2021-01-18 18:54

    If you enable these permissions then this allows admob to geo-target your ads.

    Of course, the only reason to declare:

    <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> 
    

    is because you want to try out different locations during development. You don't need this permission when your app is released.

    0 讨论(0)
  • 2021-01-18 18:58

    it may help someone

    You should never request location permissions from users for the sole purpose of advertising.
    

    https://support.google.com/admob/answer/6373176?hl=en

    0 讨论(0)
提交回复
热议问题