我还有下一年级

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.android.material:material:1.0.0-rc01'
}

但当我想要构建应用程序时,我得到下一个日志:

Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0-alpha3] AndroidManifest.xml:22:18-91
    is also present at [androidx.core:core:1.0.0-alpha3] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
    Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:5:5-19:19 to override.

好!去显化并去做:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="ru.chopcode.myapplication">

    <application
        tools:replace="android:appComponentFactory"
        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">
    </application>

</manifest>

然后我在我的Logcat中得到这个错误:

Manifest merger failed with multiple errors, see logs that I have Linked with it

当前回答

我也有类似的问题。在gradle中增加了两行。属性文件:

android.useAndroidX=true
android.enableJetifier=true

这两行自动解决了我在谷歌的文件和第三方依赖之间的依赖冲突。以下是链接:https://developer.android.com/topic/libraries/support-library/androidx-overview#new-project

其他回答

这完全取决于库版本的兼容性

我在这只奇怪的虫子面前呆了两个小时。 我通过执行以下步骤解决了这个错误

挂起你的构建。Gradle依赖到

  implementation 'com.google.android.gms:play-services-maps:17.0.0'

to

  implementation 'com.google.android.gms:play-services-maps:15.0.0'

创建新项目并比较构建。并替换了所有Gradle文件

implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.1'

与其他依赖项相同的是在一个新项目中 就像这样

implementation 'androidx.appcompat:appcompat:1.0.0-alpha3'

implementation 'androidx.constraintlayout:constraintlayout:1.1.2'

implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-alpha1'

androidTestImplementation 'androidx.test:runner:1.1.0-alpha3'

androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha3'

implementation 'androidx.core:core-ktx:1.0.0-alpha3'

然后固定导入在kotlin文件中使用androidx。

首先,一定要在manifest标签中添加这一行

xmlns:tools="https://schemas.android.com/tools"

然后在Android studio中添加工具替换建议的工具

看到这张图片并在你的android AndroidManifest.xml中添加这一行

tools:replace="android:appComponentFactory"
android:appComponentFactory="whateverString"

我所做的就是转到顶部菜单上的“重构”选项。

然后选择“迁移到AndroidX”

接受将项目保存为zip文件。

请更新Android Studio和Gradle,以确保没有遇到任何问题。