Hi - I am using `androidx.room:room-ktx:2.5.1` and...
# room
m
Hi - I am using
androidx.room:room-ktx:2.5.1
and
androidx.room:room-compiler:2.5.1
along with
ksp
I have declared a dao with
Copy code
@Dao
interface IDepotDao {
    @Insert(onConflict = OnConflictStrategy.IGNORE)
    suspend fun insert(depot: Depot)

    @Query("DELETE FROM depots")
    suspend fun deleteAll()

    @Transaction
    suspend fun rebuild(entities: List<Depot>) {
        deleteAll()
        entities.forEach {
            insert(it)
        }
    }
}
When building the module, a build error is thrown stating that some
IDepotDao.DefaultImpls
symbol was not found. Building works, when I remove that method. Someone has an idea on what I might be doing wrong?
y
that seems weird, can you file a bug w/ a repro if possible? https://issuetracker.google.com/issues/new?component=413107&amp;template=1096568 🙏