清单合并失败,出现多个错误,错误:tools:replace指定,但未指定新值应用程序主清单

时间:2019-07-17 10:09:43

标签: firebase android-studio android-manifest

我在添加Firebase依赖项时遇到Manifest合并失败并出现多个错误的情况

我尝试添加tools:replace标签,这就是添加到错误中的原因。

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.ecommerce"

    xmlns:tools="http://schemas.android.com/tools"
    >

    <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"
        tools:replace="android:allowBackup,icon,theme,label,name">

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

1 个答案:

答案 0 :(得分:0)

如果您尚未将任何Maven依赖项迁移到AndroidX命名空间,则在 gradle.properties 中将以下两个标志设置为true时,Android Studio构建系统也会为您迁移这些依赖项。 >文件:

android.useAndroidX=true
android.enableJetifier=true

更多Click here