# remove com.google.android.gms.permission.AD_ID Permission

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1709277723165/2460b6e7-1108-4ee7-ab03-7955df9e4d6a.png align="center")

Our customer want to publish a new Android App version to Google Play Store today, but he it got an error.

```plaintext
com.google.android.gms.permission.AD_ID
```

I fixed this error a long time ago.

```kotlin
<uses-permission android:name="com.google.android.gms.permission.AD_ID"
    tools:node="remove"/>
```

The same as other permissions.

```kotlin

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
     tools:node="remove"/>
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
     tools:node="remove"/>
```
