You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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,
var deliveryAddresseChoosen: String?,
var timePicked: String?,
var restaurantToken: String,
var getCommmentsOfOrder: String?,
var clientName: String,
var clientPhone: String,
var restaurantAddresse: String,
var deliveryFeesAmount: Double?
)
but when I try to send it to next fragment putParcelable("orderDetails", Parcels.wrap(orderDetails))
I Always got. org.parceler.ParcelerRuntimeException: Unable to find generated Parcelable class for com.olivier.oplivre.Models.ClientOrderDetailModel, verify that your class is configured properly and that the Parcelable class com.olivier.oplivre.Models.ClientOrderDetailModel$$Parcelable is generated by Parceler.
I got Proguard Enabled
# Parceler library -keep interface org.parceler.Parcel -keep @org.parceler.Parcel class * { *; } -keep class **$$Parcelable { *; }
Please im stuck hours! D:
Note: I' testing on DEBUG , not release
Android studio Version 4.1.1
The text was updated successfully, but these errors were encountered:
I got.
implementation 'org.parceler:parceler-api:1.1.12' annotationProcessor 'org.parceler:parceler:1.1.12'
this is my model
this is the var
but when I try to send it to next fragment
putParcelable("orderDetails", Parcels.wrap(orderDetails))
I Always got.
org.parceler.ParcelerRuntimeException: Unable to find generated Parcelable class for com.olivier.oplivre.Models.ClientOrderDetailModel, verify that your class is configured properly and that the Parcelable class com.olivier.oplivre.Models.ClientOrderDetailModel$$Parcelable is generated by Parceler.
I got Proguard Enabled
# Parceler library -keep interface org.parceler.Parcel -keep @org.parceler.Parcel class * { *; } -keep class **$$Parcelable { *; }
Please im stuck hours! D:
Note: I' testing on DEBUG , not release
Android studio Version 4.1.1
The text was updated successfully, but these errors were encountered: