Bradley Campbell

Results 28 comments of Bradley Campbell

Are you able to decompile the bytecode into Java and post it here? (I don't have any means of doing this myself because I'm currently in the process of moving...

It's a workaround, but for now you could exclude all `volatile` fields from being parcelled. You can do it globally via the `ProcessorConfig`: ```java @ProcessorConfig( options = @PaperParcel.Options( excludeModifiers =...

The transient keyword still works for excluding fields. In kotlin it's an annotation, e.g. `@field:Transient` The error message here is not that helpful though. I guess `kotlin.Lazy` is a generic...

As for auto-excluding these, I wonder if we could auto-exclude properties that end with `$delegate` or something (although that's an implementation detail so it might be ill advised). Hopefully all...

Does `@delegate:Transient` work?

@Slik1002 you won't need any special proguard rules for this library. It sounds as though you have a kotlin model, but it's being instantiated incorrectly (probably through the usage of...

Did you apply the `kotlin-kapt` plugin?

Ah so fulladle isn't intended to be compatible yet?