Android Studio
[Android Studio] RecyclerView sync failed
dmshye
2020. 2. 24. 14:38
If you failed to resolve: com.android.support:recyclerview-v7:{version} in Android Studio
1
|
implementation 'com.android.support:recyclerview-v7:28.1.1'
|
build.gradle

To use it
1
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
build.gradle

and change <android.support.v7.widget.RecyclerView ~~~~~~>
to <androidx.recyclerview.widget.RecyclerView~~~~~~>
Android is moving away from Android AppCompat Library to Androidx.
Going forward you should ideally use these libraries as all the new updates will be for them.
References
https://stackoverflow.com/questions/55677041/how-to-access-recyclerview-in-androidx