我正在尝试在应用中使用FlexBoxLayout
,但是我一直遇到错误。我尝试了各种设置和配置,但是不断弹出不同的错误。我现在所拥有的:
build.gradle(应用程序):
dependencies {
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.google.android:flexbox:1.1.0'
implementation "androidx.appcompat:appcompat:1.0.0"
}
这给了我错误:
清单合并失败:来自[com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91的属性application @ appComponentFactory value =(android.support.v4.app.CoreComponentFactory) 也存在于[androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value =(androidx.core.app.CoreComponentFactory)。 建议:在AndroidManifest.xml:23:5-131:19的元素上添加'tools:replace =“ android:appComponentFactory”'以进行覆盖。
将tools:replace="android:appComponentFactory"'
添加到清单中时,出现以下问题:
清单合并失败,并出现多个错误,请参阅日志
这就是我要放弃的地方,我什至不知道要看什么日志。
更新,当我仅将flexbox
添加到依赖项时,应用程序崩溃,并在NoClassDefFoundError
类上显示androidx.core.view.ViewCompat
。
答案 0 :(得分:1)
实现此目的的步骤很少:
1在项目结构中,将gradle版本更新为最新版本
2在应用程序的build.gradle集compileSdkVersion 28
中,在依赖项中,根据https://developer.android.com/jetpack/androidx/migrate将库转换为androidx
dependencies {
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.google.android:flexbox:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
}
3同步项目并重建
4转到“活动”课程。一切将带有红色下划线,并且导入将变灰。删除变灰的导入。然后使用包含androidx
的新导入路径导入其余部分。请记住,xml布局中的所有小部件也必须更改。这将很容易找到,因为在您运行应用程序时,您将收到类似于以下内容的错误:
Caused by: java.lang.ClassNotFoundException: Didn't find class "android.support.design.widget.CoordinatorLayout" on path: DexPathList[[zip file "/data/app/com.example.mimok.flexbox2-1/base.apk",
在这种情况下,我到CoordinatorLayout
的路径错误,应更改为<androidx.coordinatorlayout.widget.CoordinatorLayout>
。
答案 1 :(得分:0)
尝试:
change
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:appcompat-v7:28.0.0'
to
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.appcompat:appcompat:1.0.0-alpha3'
您可以阅读有关此here的信息。 另外,我建议您在Android Studio 3.2中转到Refactor-> Refactor to AndroidX
如果适合您,请在此处更新。