Behrooz Fard
Behrooz Fard

Reputation: 555

Change AndroidManifest.xml MetaData Value in Unity Project

I have a Unity project. One of the libraries that I use in my project has metadata in its Manifest file. Is there any way to keep change its value? When I add my value in the AndroidManifest.xml file remained the old value.

<meta-data
        android:name='MetaDataName'
        android:value='oldValue' />

<meta-data
        android:name='MetaDataName'
        android:value='newValue' />

Upvotes: 0

Views: 342

Answers (1)

Dinkar Kumar
Dinkar Kumar

Reputation: 2250

Add the following in your manifest

<meta-data
        tools:replace="android:value"
        android:name='MetaDataName'
        android:value='newValue' />

Upvotes: 1

Related Questions