Reputation: 555
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
Reputation: 2250
Add the following in your manifest
<meta-data
tools:replace="android:value"
android:name='MetaDataName'
android:value='newValue' />
Upvotes: 1