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
In Kotlin, try using makeMainSelectorActivity :
Kotlin
val defaultBrowser = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, Intent.CATEGORY_APP_BROWSER) defaultBrowser.data = Uri.parse("https://yoururl.com/") startActivity(defaultBrowser)