AndroidX迁移-androidx.legacy:legacy-support-v4或androidx.appcompat:appcompat

时间:2019-10-31 12:06:40

标签: android androidx

我尝试通过使用Android Studio /重构/迁移到AndroidX将旧项目之一迁移到AndroidX ...

但是,对于某些库项目,当我浏览它们的build.gradle时,我注意到Android Studio正在将行从

implementation 'com.android.support:support-v4:28.0.0'

implementation 'androidx.legacy:legacy-support-v4:1.0.0'

我原以为迁移的行应该是

implementation 'androidx.appcompat:appcompat:1.0.0'

我可以知道为什么会这样吗?我已经尝试过androidx.legacy:legacy-support-v4:1.0.0androidx.appcompat:appcompat:1.0.0。他们两个都编译并执行良好。

但是,哪个是正确的?该库正在使用androidx.viewpager.widget.ViewPager

1 个答案:

答案 0 :(得分:1)

androidx.viewpager.widget.ViewPager

包含在androidx.viewpager:viewpager:1.0.0

您可以在doc中找到有关库映射的信息:

com.android.support:support-v4   -> androidx.legacy:legacy-support-v4
com.android.support:appcompat-v7 -> androidx.appcompat:appcompat

androidx.viewpager:viewpager库还是以下内容的transitive dependency

androidx.legacy:legacy-support-v4 
 -- androidx.legacy:legacy-support-core-ui
 -- -- androidx.viewpager:viewpager