parceler icon indicating copy to clipboard operation
parceler copied to clipboard

:package: Android Parcelables made easy through code generation.

Results 33 parceler issues
Sort by recently updated
recently updated
newest added

Lets say I have structure like below in multi module project ``` JVM external library A { class City() } Android Module B { @ParcelClass(value = City, converter=BlahConverter::class) data class...

Hi, i found some cases where parceler breaks the incremental compilation. I have sample project for this issue: [Parceler-test.zip](https://github.com/johncarl81/parceler/files/3680438/Parceler-test.zip) There are 3 modules: `app` (application module), depends to: basemodule and...

This library start to crash my app on some users devices, I can't replicate the error to solve it or understand it! **Firebase shows:** ``` Fatal Exception: org.a.d Unable to...

I have the following generic Data container: ``` @Parcel public class Data implements Cloneable { @ParcelPropertyConverter(ValuesParcelConverter.class) SparseArray mValues; ... } ``` The ValuesParcelConverter does this: ``` public void toParcel(SparseArray values,...

Im adding a shortcut for my activity but when using the Parcels.wrap(object) this error appearing. Can add this feature ? Please take a look : [PersistableBundle.java](https://android.googlesource.com/platform/frameworks/base/+/android-7.1.1_r6/core/java/android/os/PersistableBundle.java)

I am trying to convert the following **working** JUnit test from Java ... ``` java import android.os.Parcelable; import org.junit.Test; import org.parceler.Parcel; import org.parceler.ParcelPropertyConverter; import org.parceler.Parcels; import java.util.List; import com.example.utils.LowEmissionZoneBuilder; import...

Hello, Parceler produces a compile time error when I use it on a Kotlin data class, that accepts an immutable list of enum values. Here is the concrete example: ```Kotlin...

Parceler version : 1.1.12 AGP: 3.3.1 Hi @johncarl81 , I got this runtime error on android system (the activity become crash, but it is crash on android application, and the...

I've a big probject and use Parceler with success, thank you. I've a problem when I try to make project in debug: If I edit my code and run debug...

Hi, I got this error after updating to parceler 1.1.11, while it is working fine on parceler 1.1.6 Android gradle plugin : 3.1.2 Kotlin: 1.2.40 androidSupport : 27.1.1 Databinding compiler:...