Status Update
Comments
[Deleted User] <[Deleted User]> #2
Hello,
Thank you for reaching out to us with your request.
We have duly noted your feedback and will thoroughly validate it. While we cannot provide an estimated time of implementation or guarantee the fulfillment of the issue, please be assured that your input is highly valued. Your feedback enables us to enhance our products and services.
We appreciate your continued trust and support in improving our Google Cloud Platform products. In case you want to report a new issue, Please do not hesitate to create a new issue on the
Once again, we sincerely appreciate your valuable feedback; Thank you for your understanding and collaboration.
cl...@google.com <cl...@google.com> #3
Being able to view the available backups in console would be helpful
Description
Component used: Navigation 2.8.3
When using a serializable route, it cannot have nested serializable objects, as the navigation library throws an error. See this example below:
Declaring this route will throw this error:
java.lang.IllegalArgumentException: Route com.example.Route could not find any NavType for argument details of type com.example.Details - typeMap received was {}
I realize we can pass a
typeMap
when calling the method, but there is noNavType
to match the Kotlin classes annotated with@Serializable
.Also I think we should not need to pass a
typeMap
. Since the object is serializable, then we don't need to do anything further than that.For now, the workarounds I see are either:
Parcelable
since there's aNavType
for that. Still not ideal either, and I'm actually seeing another issue related to that, that I'm debugging at the moment. So it doesn't look reliable.I hope you can improve on this, as it would make the library much simpler to use. Thank you.