0

RecyclerView 27.1.0 和 android.arch.paging 1.0.0-alpha4-1 都包含 android/support/v7/recyclerview/extensions/ListAdapter.class

有没有人知道如何从分页组件中排除 ListAdapter.class?

4

2 回答 2

2

根据Architecture Components Release Notes,您必须升级到 Paging 1.0.0-alpha6 才能使用 Support Library 27.1.0:

使用 Paging 的应用程序必须同时升级到 Alpha 6 和 Support Library 27.1.0

于 2018-03-16T16:35:52.080 回答
0

我认为你可以这样做

implementation("your dependency"){
    exclude group:'com.android.support' module:'recyclerview-v7'
}
于 2018-03-16T16:35:34.293 回答