I'm learning Android development, while following a tutorial made by Lets Build this App ( on Youtube ). He used this library and I tried too, but I'm failing. I created a RecyclerView and tried to make a GroupAdapter using Groupie like this:
newmessage_view.adapter = groupAdapter
This is what he does in the video, but when I do it, it gives me an error:
Type mismatch. Required: (RecyclerView.Adapter<android.support.v7.widget.RecyclerView.ViewHolder!>?..RecyclerView.Adapter<*>?) Found: GroupAdapter<com.xwray.groupie.ViewHolder>
I hope someone can help me.