Good day everyone👋,
I am trying to use the K2 in my project, I enable it in
gradle.properties
,
kotlin.experimental.tryK2=true
and it also uses kapt, so I also use the
kapt.use.k2=true
, when I rebuild an error appear
error: abstract method clear() in KeyValueDao cannot be accessed directly KeyValueDao.super.clear();
In my Dao file:
@Transaction
fun clear() {
clearInts()
clearDoubles()
clearBooleans()
clearStrings()
}
In K1, there is no error. Did I miss something?
kodee sad