The GPS Matter Commissioning intent filter looks like this, it does not use a URI scheme. If I try adding a URI GPS can't find my app any more.
<intent-filter>
<action android:name="com.google.android.gms.home.matter.ACTION_COMMISSION_DEVICE"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
So how do I use this intent to navigate in Jetpack compose? This deeplink does not trigger.
fun NavGraphBuilder.lowpanGraph(appState: LowpanAppState) {
composable(route = "$DEVICES_SCREEN",
deepLinks = listOf(navDeepLink { action = "com.google.android.gms.home.matter.ACTION_COMMISSION_DEVICE"})
) {
DevicesScreen(openScreen = { route -> appState.navigate(route) })
}