Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 510 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 510 Bytes

Open Baato navigation from your app

To show Baato Maps to be listed in open with section when you want to navigate to Baato You need have this schema

val deepLink = "baato://?navigate=27.7032367,85.3296298&scheme=io.baato"

And

val uri = Uri.parse(deepLink) val intent = Intent(Intent.ACTION_VIEW, uri) val chooserIntent = Intent.createChooser(intent, "Open with") try { startActivity(chooserIntent) } catch (e: ActivityNotFoundException) {}