Appcompat 和 Recyclerview 版本差异

Appcompat and Recyclerview versions difference

我刚刚从 Android Studio 创建了一个项目,gradle 文件如下所示,

问题是,我猜 appcompat 和 recyclerview 应该是相同的版本,我尝试了很多东西但我找不到相同的版本。

我该如何解决这个问题?

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core-ktx:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'

使用 androidx release(而不是支持库版本)。
您可以使用:

androidx.recyclerview:recyclerview:1.1.0-beta03

androidx.recyclerview:recyclerview:1.0.0

而不是

implementation 'com.android.support:recyclerview-v7:28.0.0'