13
Views
1
Comments
Remove AD_ID permissions from AndroidManifest.xml
Question
Application Type
Mobile

Hi.

Is there any way to remove com.google.android.gms.permission.ad_id (AD id) permission when generating the app? We are facing issue while deploying the APK build in google play console.


Thanks in advance.


2019-01-07 16-04-16
Siya
 
MVP

Please see adding the below to extensibility configuration helps.

 "android": {

    "permissions": {

      "remove": [

        "com.google.android.gms.permission.AD_ID"

      ]

    }

  }

}

You can use an online tool like this to inspect the manifest file.


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.