auto-data-class
auto-data-class copied to clipboard
Generator for Kotlin data classes with Gson/Parcelable type adapter
Hi, Thanks for it, it's great. I'm just filling an issue cause currently we can't add auto-data-class in an existing jetpack compose project we always end up with the following...
Sample class that illustrates the error: ``` @DataClass data class Foo(val x: Int) { var y: Int get() = x + 1 } ``` The generated class attempts to read...
I added dependencies to my gradle file: ``` implementation 'com.fivemiles.auto:auto-data-class-lib:0.5.3' kapt 'com.fivemiles.auto:auto-data-class-processor:0.5.3' ``` There was an error in generated files: > DC_Message.kt: (8, 25): Unresolved reference: Generated It seems that...