AndroidX迁移-androidx.legacy:legacy-support-v4或androidx.appcompat:appcompat
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AndroidX迁移-androidx.legacy:legacy-support-v4或androidx.appcompat:appcompat相关的知识,希望对你有一定的参考价值。
我尝试通过使用android Studio /重构/迁移到AndroidX将旧项目之一迁移到AndroidX ...
但是,对于某些库项目,当我浏览它们的build.gradle
时,我注意到Android Studio改变了这一行的位置
implementation 'com.android.support:support-v4:28.0.0'
to
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
我原以为迁移的行应该是
implementation 'androidx.appcompat:appcompat:1.0.0'
我可以知道为什么会这样吗?我已经尝试了androidx.legacy:legacy-support-v4:1.0.0
和androidx.appcompat:appcompat:1.0.0
。他们两个都编译并执行良好。
但是,哪个是正确的?库正在使用androidx.viewpager.widget.ViewPager
。
答案
[C0类]
以上是关于AndroidX迁移-androidx.legacy:legacy-support-v4或androidx.appcompat:appcompat的主要内容,如果未能解决你的问题,请参考以下文章
Androidx 迁移:NoClassDefFoundError
迁移到AndroidX后:无法实例化类:androidx.appcompat.widget.ShareActionProvider。
在迁移到 viewpager2 androidx 时发现此错误“无法解析方法 'super(androidx.fragment.app.FragmentManager)'”