I have a <intent-filter> with schema and host matching and is working fine. Now for the same intent URI I’ve added path value and no path attribute added for <intent-filter>‘s tag.
Still my activity is getting called correctly, but I need to access the path value passed.
How can I?
Thanks,
Venkat
You can access the
Uriincluded in theIntentthat was used to start your activity by callinggetData()on theIntent, which you get by callinggetIntent()on yourActivity.