ursus
02/28/2026, 5:04 PMActivity.onCreate doesn't called.. `onNewIntent`will get called. How do I then turn that into a deeplink that compose will consume?tad
03/01/2026, 11:19 PMval deeplink: MutableState<Uri>? field, and we have a top-level App composable that takes a deeplink: State<Uri?> parameter. We also clear that value with an onDeeplinkHandled callback, so we can avoid sending users to the same destination twice.ursus
03/29/2026, 9:35 PM