MVVMTodo
MVVMTodo copied to clipboard
https://github.com/codinginflow/MVVMTodo/blob/bc2b89c60c1522662c76e044c538349c5c8a15f7/app/src/main/java/com/codinginflow/mvvmtodo/ui/tasks/TasksFragment.kt#L112 `Unresolved reference: actionGlobalDeleteAllCompletedDialogFragment` Any ideas what could be wrong ? I have changed the package name and project could that be a issue?
Hello! Due to changes in newer versions of databinding the binding classes are not generating correctly To fix this issue we need to wrap each layout file with tag like...
Hi, @ViewModelInject has deprecated. I change to the following and I still got an error. "java.lang.RuntimeException: Cannot create an instance of class com.example.room_test.ui.tasks.TasksViewModel" Is there a way I can solve...
here is the stackTrace - is:issue is:open Unable to start the daemon process. This problem might be caused by incorrect configuration of the daemon. For example, an unrecognized jvm option...
// Lifecycle + ViewModel & LiveData implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion" implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion" implementation "android.lifecycle:lifecycle-common-java8:$lifecycleVersion" Should be androidx in the last line? I have compile time error without it: Execution failed for task...
Hi, @codinginflow Nice tutorial series, Just a suggestion you can reduce some nesting using this `with` than `apply` ``` class TasksViewHolder(private val binding: ItemTaskBinding) : RecyclerView.ViewHolder(binding.root) { fun bind(task: Task)...