Android 不使用nxp库TapLinx构建?

Android 不使用nxp库TapLinx构建?,android,android-manifest,Android,Android Manifest,清单合并失败:属性application@allowBackupvalue=(true)来自AndroidManifest.xml:6:9-35 也出现在[:nxp]AndroidManifest.xml:14:9-36value=(false)。 建议:将“tools:replace=“android:allowBackup””添加到AndroidManifest.xml:5:5-19:19处的元素以覆盖 这是什么?我解决了从我的清单中删除'tools:replace=“android:all

清单合并失败:属性
application@allowBackup
value=(true)
来自AndroidManifest.xml:6:9-35 也出现在[:nxp]AndroidManifest.xml:14:9-36
value=(false)
。 建议:将“
tools:replace=“android:allowBackup”
”添加到AndroidManifest.xml:5:5-19:19处的元素以覆盖


这是什么?

我解决了从我的清单中删除'tools:replace=“android:allowBackup”'=(true)检查此项
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.ex5">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>