From my native application, I need to open my another app which build by Ionic.
I tried like this,
val intent = packageManager.getLaunchIntentForPackage("com.example.app")
intent.putExtra("uri", "hello 2?")
intent.data = Uri.parse("hello?")
startActivity(intent)
It could launch the app but, it never called handleOpenURL() method.
So I want to try using the custom URL scheme instead of the package name.
How can I open another app using custom URL scheme with URI parameter?