You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package fr.delcey.todok.data.dao;
// imports...
@SuppressWarnings({"unchecked", "deprecation"})
public final class ProjectDao_Impl implements ProjectDao {
// generated code...
}
Describe the solution you'd like
I don't really know, maybe add a way to exclude classes that implement an annotated interface (@Dao in this case) ?
Another solution would be to be able to ignore every class in the generated folder but I guess Kover doesn't have this kind of information available. Another solution would be to update Room in order to annotate their generated classes with @Generated, but I don't know if it's common for this kind of lib.
The text was updated successfully, but these errors were encountered:
What is your use-case and why do you need this feature?
On Android, Room uses DAO interfaces to generate SQL related code at compile time. Example:
ProjectDao.kt (source code)
ProjectDao_Impl.java (generated)
Describe the solution you'd like
I don't really know, maybe add a way to exclude classes that implement an annotated interface (
@Dao
in this case) ?Another solution would be to be able to ignore every class in the generated folder but I guess Kover doesn't have this kind of information available. Another solution would be to update Room in order to annotate their generated classes with
@Generated
, but I don't know if it's common for this kind of lib.The text was updated successfully, but these errors were encountered: