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
{{ message }}
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
I have a list of serializable objects List legs;
It is annotated with @extra in my activity and with @FragmentArg in my fragment.
When I send this list from one activity to another via
RouteLegsActivity_.intent(this).legs(legs).start();
it works find and the generated code is
When I try to do the same to the fragment via RouteLegsFragment_.builder().legs(legs).build()
the generated code is:
This does not compile because of the missing cast to Serializable.
This seems like a bug to me. Or am I doing something wrong?