trevjones
05/20/2022, 10:44 PM@Parcelize data class Foo(val bar: String): Parcelable
would generate something like @EnforceImpl abstract class FooRoundTripParceling {...}
into the androidTest source set. Then I could have a different processor watching for annotations to pair the impl with a generated template.
I assume generating some sort of resource file and doing a processor or gradle task that operates on the generated resources would be the only way to do something like this.Jiaxiang
05/23/2022, 5:12 PM