<@U0J2TNBAP> I’ve just watched your great talk at ...
# squarelibraries
k
@jessewilson I’ve just watched your great talk at Droidcon (Coroutines Party Tricks) and I noticed that on the last slide, there is a link to the GitHub repo which leads to 404 🙂 https://github.com/swankjesse/coroutines-party-tricks/ Are you planning to open it? Also, I have a question about the coroutine-based navigation approach. Since in the Android world our Activity might be recreated at any point, how do we properly support “suspending results” in that case? As far as I know, the coroutine (or suspension point, I’m not sure what the appropriate name is here) cannot be serialized and placed on the Bundle, so how can we deliver the result of our screen to the point we need after our Activity is recreated?
1
j
Fixed!
I have done nothing thus far to support resuming a navigation, and it’s a giant pain
I could remember all decisions made by a user and replay them
But then I’ll also need an API to also remember other values like network responses
k
Thank you for making it public 🙂 That’s true, it’s a pain