parceler
parceler copied to clipboard
:package: Android Parcelables made easy through code generation.
Hi, I'm getting `No corresponding property found for constructor parameter ID` and `No corresponding property found for constructor parameter isValid` for the following Kotlin class: @Parcel(Parcel.Serialization.BEAN) data class MyClass @ParcelConstructor...
With this simple class: ```java @Parcel public class MyModel { Set someLongs; } ``` I'm getting the same error reported in #293. `someLongs` is indeed a `Set`, but the generated...
Somewhat regarding to #275 comment 3 ... This may be more of just a documentation than an issue with Parceler, but here we go... Kotlin allows parameters to have default...
``` missing type arguments for generic class List where E is a type-variable: E extends Object declared in interface List build\generated\source\apt\debug\...\Domain$$Parcelable.java:115: warning: [rawtypes] found raw type: List java.util.List list$$2 =...
I used parceler version '1.1.6' with proguard enabled. I have these proguard rules in my 'proguard-rules.pro' : `-keep interface org.parceler.Parcel -keep @org.parceler.Parcel class * { *; } -keep class **$$Parcelable...
I have a user model as shown below ````java import org.parceler.Parcel; import org.parceler.ParcelConstructor; import org.parceler.ParcelPropertyConverter; import org.threeten.bp.OffsetDateTime; @Parcel public class User { String firstName; String lastName; @ParcelPropertyConverter(OffsetDateTimeParcelConverter.class) OffsetDateTime createdAt; @ParcelConstructor...
When ```annotationProcessor 'org.parceler:parceler:1.1.8'``` line added to gradle file, I get the error below. Without it, build is successful. >Warning:Supported source version 'RELEASE_7' from annotation processor 'android.arch.lifecycle.LifecycleProcessor' less than -source '1.8'...
- Android Preview 3.0 canary 7 - Kotlin Gradle Plugin 1.1.3-2 - Parceler 1.1.9 Project dependencies { classpath 'io.realm:realm-gradle-plugin:3.5.0' } App apply plugin: 'kotlin-kapt' dependencies { compile 'org.parceler:parceler-api:1.1.9' kapt 'org.parceler:parceler:1.1.9'...
I have the following structure: ```java @Parcel public class Zoo { List animals; List tigers; } ``` ```java @Parcel public class Animal { } ``` ```java @Parcel public class Tiger...
A formatted compile time error that the ParcelConveter type doesn't match the given property would be preferable.