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
'Android Studio' 카테고리의 다른 글
[Android Studio] 코틀린으로 뉴스 리더 어플 만들기 (0) | 2020.03.22 |
---|---|
[Android Studio] CreateProcess error=2 해결 (0) | 2020.03.02 |
[Android Studio] Adapter 사용하기 (0) | 2020.02.28 |
[Android Studio] startActivityForResult 사용해보기 (0) | 2020.02.27 |
[Android Studio] ActivityNotFoundException error (0) | 2020.02.27 |