Alif Al-Gibran
Alif Al-Gibran

Reputation: 1246

can't resolved reference Recyclerview.adapter on androidx

i've migrated my project to androidx, but when i'm using androidx for recyclerview adapter the the class of RecyclerView.Adapter cannot be resolve

i've doing this in gradle.properties

android.useAndroidX=true
android.enableJetifier=true

im using

implementation 'androidx.recyclerview:recyclerview:1.0.0'

Upvotes: 1

Views: 352

Answers (1)

Alif Al-Gibran
Alif Al-Gibran

Reputation: 1246

great, i use @tynn suggestion and it works,

  1. i migrate to androidx
  2. invalidate AS or clean my project
  3. importing androidx.recyclerview.widget.RecyclerView.Adapter in my adapter

Upvotes: 1

Related Questions