I have enabled App linking in my application. It works fine. But in my application there are some scenarios where i cannot handle the incoming url. In those cases i want to
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://stackoverflow.com/questions/58800240/android-app-link-open-a-url-from-app-in-browser-without-triggering-app-link"));
Intent chooseIntent = Intent.createChooser(intent, "Choose from below");
startActivity(chooseIntent);
This will open all the installed web browsers from which user can choose!