gpt4 book ai didi

android - 使用 lottie 时 list 合并失败并出现多个错误

转载 作者:搜寻专家 更新时间:2023-11-01 07:42:24 25 4
gpt4 key购买 nike

list 合并失败:来自 [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91

这是我的 gradle 文件:

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7: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'
// RxJava
implementation 'io.reactivex.rxjava2:rxjava:2.1.9'

// RxAndroid
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'

implementation 'com.android.support:customtabs:28.0.0-alpha3'
implementation "com.airbnb.android:lottie:2.8.0"

}

list

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.learnapplication">
<uses-sdk tools:overrideLibrary="android.support.customtabs"/>
<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">

</activity>
<activity android:name=".CustomTabActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

最佳答案

你对 Gradle 或 list 没有问题,我也在寻找这个问题的解决方案,在 list 中你不必更改任何东西,而是使用至少 21 和 SDK 的最低版本为了避免没收,请尝试降低 Lottie 的版本(我使用的是 2.7.0)并尝试在 Gradle 中添加以下几行:

implementation ('com.airbnb.android:lottie:2.7.0') {
exclude group: 'com.android.support', module: 'support-v7'
exclude group: 'com.android.support', module: 'support-v4'
exclude group: 'com.android.support', module: 'design'
exclude group: 'com.android.support', module: 'recyclerview'
exclude group: 'com.android.support', module: 'transition'
}

祝你好运!更新我!

关于android - 使用 lottie 时 list 合并失败并出现多个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53425291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com