Hi, Should we add @Keep with @Entity to avoid obfu...
# room
k
Hi, Should we add @Keep with @Entity to avoid obfuscation. I assume data class with @Entity should not get obfuscated but in some cases it does.
Copy code
@Entity
data class Employees(
    @PrimaryKey val id: String, val name: String?
)
Thanks 🙂
y
Room doesn't really care whether they are obfuscated or not. We don't use reflection to access entities
👍 1
k
Thanks