Не удалось добавить библиотеку evernote. Манифест слился - PullRequest
0 голосов
/ 28 сентября 2018

Я использую эту библиотеку https://github.com/evernote/android-state

Моя зависимость, как показано ниже

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.github.livefront:bridge:v1.1.2'
    implementation 'com.evernote:android-state:1.4.0' 
    kapt 'com.evernote:android-state-processor:1.4.0'

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

Я получил следующую ошибку.

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

Если я удаляю implementation 'com.evernote:android-state:1.4.0'тогда все работает хорошо.Как я могу решить эту проблему?

Я пытался

implementation ('com.evernote:android-state:1.4.0')  {
    exclude group: 'com.android.support'
}

, но та же проблема сохраняется.

1 Ответ

0 голосов
/ 28 сентября 2018

Я узнал, что мне нужно исключить 'androidx.core' вместо

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.github.livefront:bridge:v1.1.2'
    implementation ('com.evernote:android-state:1.4.0')  {
        exclude group: 'androidx.core'
    }
    kapt 'com.evernote:android-state-processor:1.4.0'

    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'
}
...