简体   繁体   中英

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' />

Add the following in your manifest

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM