Skip to content

Instantly share code, notes, and snippets.

@raystatic
Last active July 9, 2022 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raystatic/5fe4ac2f99dbb2761cce0ebaeea07e4b to your computer and use it in GitHub Desktop.
Save raystatic/5fe4ac2f99dbb2761cce0ebaeea07e4b to your computer and use it in GitHub Desktop.
binding.btnGoto.setOnClickListener {
// Navigate to feature_01
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("raystatic://multi.module.app/feat01"))
startActivity(intent)
// Navigate to feature_02
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("raystatic://multi.module.app/feat02"))
startActivity(intent)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment