Add Kotlin support to the "To Do" app.
Convert all classes in todo.list package to Kotlin and clean up converted files to remove as many instances of !! as possible.
Use Kotlin Android Extensions library to remove instances of findViewById(...) in converted Kotlin files.
apply plugin: 'kotlin-android-extensions'
Add to-do details screen feature in Kotlin. This screen should allow marking a to-do item as complete.
Use Kotlin's collections API to remove completed to-do items from the main listing.