Disable permission dialog in Unity 5

Hi all,

Unity 5.3.2p2 came with the following change:

Android: Marshmallow - Added the
possibility to disable the permission
dialog by adding metadata to the
activity.

What metadata needs to be added? The change doesn’t reference a bug number.
We have our own system in place to ask for the required permissions so we don’t need them all up front.

Thanks in advance,

Stockx

Apparently you need to add the following to your manifest file:

<meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="true" />

@Stockx Not working. Help me please.