본문 바로가기

Android Studio

[Android Studio] RecyclerView sync failed

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

https://stackoverflow.com/questions/51984511/failed-to-resolve-com-android-supportrecyclerview-v728-1-1