Fixed
Status Update
Comments
yb...@google.com <yb...@google.com>
ap...@google.com <ap...@google.com> #2
da...@google.com <da...@google.com> #3
Yes, kapt incremental compilation support is available since 1.3.40-dev-795
Is there already some plan to add support to Room?
Is there already some plan to add support to Room?
ta...@gmail.com <ta...@gmail.com> #4
#3 incremental kapt is available in 1.3.30 released yesterday too.
[Deleted User] <[Deleted User]> #5
Is there already some ETA?
[Deleted User] <[Deleted User]> #6
We are working on it and aiming for Room 2.2
Description
Version used: 2.0.0
Devices/Android versions reproduced on: N / A
@Dao
interface Foo {
@Query("SELECT * FROM bar")
fun getAll(): List<Bar>
@Transaction
fun getTransactionAll(): List<Bar> {
return getAll()
}
}
It generates
Foo.DefaultImpls.getTransactionAll(this, )
which cause the error (illegal start of expression) because of the extra comma.