avioli / uni_links

Flutter plugin for accepting incoming links.
BSD 2-Clause "Simplified" License
563 stars 303 forks source link

URI Link with '&' in the link won't recognized as uni link #182

Open zerowu49 opened 1 year ago

zerowu49 commented 1 year ago

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:

Is there any way to make it to redirected to app and run properly for case three like case one and two?

error404sushant commented 1 year ago

It is working. Please try to open that link from phone. Not from terminal.