Lottie的清单合并问题

时间:2018-10-20 19:19:52

标签: android android-studio android-manifest manifest lottie

当我遇到此错误时,我就开始使用Lottie。我将依赖项添加到了build.gradle

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'org.jsoup:jsoup:1.11.2'
implementation 'com.airbnb.android:lottie:2.8.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'android.arch.navigation:navigation-fragment:1.0.0-alpha06'
implementation 'android.arch.navigation:navigation-ui:1.0.0-alpha06'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
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.airbnb.android:lottie:2.8.0'以来,构建成功,但是由于清单合并中存在错误,所以我无法运行我的应用程序。

Merging Errors: Error: Attribute application@appComponentFactory value=(androidx.core.app.CoreComponentFactory) from AndroidManifest.xml:22:18-86 is also present at AndroidManifest.xml:22:18-91 value=(android.support.v4.app.CoreComponentFactory). Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:14:5-35:19 to override. app main manifest (this file), line 21 

这是我的Manifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:dist="http://schemas.android.com/apk/distribution"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.rishav.sanfoundryfer">

    <dist:module dist:instant="true" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:logo="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        tools:ignore="GoogleAppIndexingWarning">
        <activity android:name=".QuestionActivity"
            android:label="MCQs"/>
        <activity android:name=".TopicActivity"
            android:label="Select Topic"/>
        <activity android:name=".SubjectActivity"
            android:label="Select Subject"/>
        <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>

2 个答案:

答案 0 :(得分:2)

错误为androidx.core.app.CoreComponentFactory的事实表明正在使用新的“ Jetpack”支持库程序包。看到清单使用的是“旧”软件包,这表明该清单可能已被Lottie使用。
您可以通过检查库来确保这是原因。 要解决此问题,您可以使用较旧的彩票库,开始使用jetpack支持库软件包或手动解决合并。如果您导航到AndroidManifest.xml并切换到窗口底部的Merged Manifest标签,则可以查看合并的清单。

答案 1 :(得分:1)

建议:

'tools:replace="android:appComponentFactory"'的{​​{1}}元素中添加<application>以覆盖.app主清单(此文件),第21行