How can I open a deep link defined in my Compose a...
# compose
m
How can I open a deep link defined in my Compose app using an explicit intent from another (native) app? I've created a deep link that can be opened by clicking a link from browser, but I canot open it with an intent from another app. Here's my intent definition:
Copy code
val myIntent = Intent(Intent.ACTION_VIEW,
"<myapp://greeting/Mehdi>".toUri(),
    applicationContext,
    MainActivity::class.java
)
startActivity(myIntent)