The folllowing is the error:java.lang.ClassCastException: com.example.myhouse.MainActivity cannot be cast to com.example.myhouse.TasklistFragment$Callbacks at com.example.myhouse.TasklistFragment.onAttach(TasklistFragment.kt:50)
Where the code for tasklist at line 50 is
interface Callbacks{
fun addTaskToViewModel(task: Task, destinationTasklistType: Int)
fun deleteTaskFromViewModel(tasklistType: Int, adapterPosition: Int)
fun getTaskListFromViewModel(tasklistType: Int) : LinkedList<Task>
}
override fun onAttach(context: Context) {
super.onAttach(context)
callbacks = context as Callbacks?
}