You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using [https scheme] and am testing
on my [Android Emulator],
which is running [Android 12].
my code is:
_sub = uriLinkStream.listen((Uri? deepLink) {
if (deepLink != null) {
log("has deplink when app running");
_handleActionFromLink(deepLink);
} else {
log("no deplink when app running");
}
},
Then, try to invoke the link via adb:
adb shell am start -a android.intent.action.VIEW -c android.intent.category.BROWSABLE -d 'https://myweb.com/login' com.myweb => Redirected to app and run correctly
adb shell am start -a android.intent.action.VIEW -c android.intent.category.BROWSABLE -d 'https://myweb.com/login?token=xyz' com.myweb => Redirected to app and run correctly
I'm using [https scheme] and am testing
on my [Android Emulator],
which is running [Android 12].
my code is:
Then, try to invoke the link via adb:
Is there any way to make it to redirected to app and run properly for case three like case one and two?
The text was updated successfully, but these errors were encountered: