Hey guys!
Need your help, not sure it's regarding to Kotlin or to Android's Room:
Copy code
@Dao
interface BottomBarIconDao {
@Query("SELECT * FROM icons")
fun getAll(): List<ByteArray>
@Query("DELETE FROM icons")
fun deleteAll()
@Insert
fun insertAll(vararg images: ByteArray)
}