@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?