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

Compiling to an Android Device (Real or Virtual) just started failing. Any clue as to why in this stacktrace? ``` error: Parceler: Code generation did not complete successfully. error: Parceler:...

Bumps [gson](https://github.com/google/gson) from 2.5 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...

dependencies

Hi, Any plan to support Kotlin Symbol Processing (KSP)? When using kotlin we used KAPT which is relatively slow. Currently if library supporting KSP it will be faster to compile....

Hello, I'm working on a project using Parceler and Realm, everything was fine, I left the project untouched for a few weeks then when I come back I face this...

Hi, from [asyncprofiler](https://github.com/gradle/gradle-profiler) i can see the ParcelAnnotationProcessor.process dominating my android build and cpu process. it seems spend most of time to FileOutputStream.write. Do you have any clue what may...

I got. ` implementation 'org.parceler:parceler-api:1.1.12' annotationProcessor 'org.parceler:parceler:1.1.12'` this is my model ``` import org.parceler.Parcel @Parcel data class ClientOrderDetailModel( var isScheduled: Boolean, var orderStatus: String, var userUUid: String, var restaurantUUID: String,...

Hi, Here is an example where parceler fails to generate code with latest version of Android Studio. If you fix this I think that #394 will also be solved. So...

Why my only one class is not getting unmarshalled. The error is class not found when unmarshalling: com.Inbox.InboxModel$$Parcelable while I can see com.Inbox.InboxModel$$Parcelable in generated files.

While using annotationProcessor there are 5 Vulnerabilities Found in CRITICAL . Below the library version we are used: implementation 'org.parceler:parceler-api:1.1.13' annotationProcessor 'org.parceler:parceler:1.1.13' Vulnerabilities ID parceler-1.1.13.jar (shaded: commons-beanutils:commons-beanutils:1.9.2) parceler-1.1.13.jar (shaded: commons-collections:commons-collections:3.2.1)...

Given the following class: ```kotlin @Parcel data class Parceled @ParcelConstructor constructor( val privateField: String ) ``` I get this build output: ``` > Task :kaptDebugKotlin fail-on-warning\build\tmp\kapt3\stubs\debug\com\example\Parceled.java:9: warning: Parceler: Reflection is...