- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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 element at AndroidManifest.xml:6:5-33: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="midhilaj.in">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".App"
android:debuggable="false"
tools:replace="android:icon "
android:roundIcon="@mipmap/ic_launcher_round"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="HardcodedDebugMode,GoogleAppIndexingWarning">
<meta-data android:name="DATABASE" android:value="dataa.db" />
<meta-data android:name="VERSION" android:value="2" />
<meta-data android:name="QUERY_LOG" android:value="true" />
<meta-data android:name="DOMAIN_PACKAGE_NAME"
android:value="midhilaj.in" />
<activity
android:name=".Registation"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
安卓级
dependencies {
implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
implementation 'com.github.satyan:sugar:1.3'
implementation 'com.android.support:multidex:1.0.0'
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'
implementation 'com.android.support:design:28.0.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'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.firebaseui:firebase-ui-auth:4.1.0'
}
删除后注意错误删除:
implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
最佳答案
我也遇到了同样的问题,经过一番搜索后,我在这里发现了这个问题: https://github.com/JakeWharton/butterknife/issues/1429
库的创建者建议您迁移到 androidX
或将库版本降级到兼容版本。现在我使用以下内容:
implementation 'com.jakewharton:butterknife:8.8.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.0'
关于Android: list 合并失败 CoreComponentFactory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54167109/
我的 google pixel 2 安卓 9 版本突然崩溃。是否有任何暗示背后的原因是什么,而且每次都无法重现。 详细日志... Didn't find class "android.support.
Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.Cor
我不知道如何处理以下错误,我在网上搜索但没有找到任何内容: java.lang.ClassNotFoundException: Didn't find class "androidx.core.app
给出的错误: Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.
我已将我的应用程序迁移到 AndroidX。如果我禁用 proguard,一切正常。如果我启用 proguard,应用程序可以成功构建,但在我打开应用程序时崩溃。 Caused by: java.la
它是一个发布版 apk,并不总是用于大肆宣传。 当我使用 firebase 在 Android P 中启动应用程序时发生。 第一次安装应用程序的时候率很高。 这是日志: 2019-06-13 13:2
我没有使用任何 AndroidX 功能,我不想迁移到 Android X,当我尝试运行该应用程序时,gradle 停止并显示此消息非常感谢任何帮助,谢谢 Manifest merger failed
虽然我的 list 实际上是正确的,但它说 list 合并错误 这是我的应用模块gradle依赖文件 dependencies { implementation fileTree(dir: '
迁移到 AndroidX 后,我在启动时遇到以下异常: LoadedApk: Unable to instantiate appComponentFactory java.lang.Class
我正在研究 firebase-ml。 早些时候,我使用的是它的 16 版本,它在我的项目中运行良好。但是经过一些需求,我需要升级到21.0.0,然后我就面临着 Error: Attribute app
这个问题在这里已经有了答案: Manifest merger failed : Attribute application@appComponentFactory - Androidx (14 个答
我是一名优秀的程序员,十分优秀!