Android Studio – How to Run afterTextChanged off of the main thread?
@Entity Creature I am attempting to update the name property in my database. @Entity(primaryKeys = ["name"]) data class Creature( @ColumnInfo(defaultValue = "New Creature") val name: String ) @Dao CreatureDao The query which updates the name is here, in the DAO.…