cranberrygame / cordova-plugin-ad-admob

Other
10 stars 25 forks source link

Access coarse location #11

Open Seache opened 8 years ago

Seache commented 8 years ago

Hello, this plugin worked great in the past. But as I uploaded a new build on the Google Play Developer Console, a new permission "android.permission.ACCESS_COARSE_LOCATION" was added. I don't know why the permission was added, and I can't find a solution to remove the permission. If I remove the Admob-Plugin and upload the build again, the permission is also removed. Maybe somebody can help me?

cranberrygame commented 8 years ago

@Seache

Sorry for late reply.

I saw following message in the admob console.

After May 18, 2016, AdMob will begin using location data to target ads and improve monetization for users who have granted this permission to the app.

So I added following permisson to the cordova-plugin-ad-admob-sdk plugin which cordova-plugin-ad-admob uses.

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

You still need to want to remove this permission?

Thanks Sang KI Kwon