codelab-android-room-with-a-view
codelab-android-room-with-a-view copied to clipboard
Step 12 Kotlin has an error in ListAdapter declaration
The class definition needs to be changed to:
class WordListAdapter : ListAdapter<Word, WordListAdapter.WordViewHolder>(WordsComparator()) {
Currently, ListAdapter is defined by ListAdapter<Word, WordViewHolder>(WordsComparator())
which leads to an undefined reference.