Results 4 issues of gonemad

Right now there is no way that i can figure out to support a long press, single tap, and double tap independently of each other. if singleTap.requiresFailureOf(doubleTap), then when i...

Query is set up to specific which columns to use ``` @Transaction @Query("SELECT id, name, permissions, imageUrl FROM ProfileEntity") abstract fun getAllEntitiesWithoutPin(): List ``` Auto generated code references a column...

This will fail to compile complaining about no @Entity annotation being found: ``` @Insert abstract fun insert(vararg items: EntityName) : List ``` This does work, but vararg support would be...

When creating tables.. the tableName needs to match the class name or it will throw a runtime error when you try to insert into the database. The database does get...