Edna Bueno
05/29/2024, 3:15 AMgradle.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 sadtapchicoma
05/29/2024, 7:42 AMEdna Bueno
05/30/2024, 12:07 AMkotlin.experimental.tryK2
tapchicoma
05/30/2024, 8:28 AM