I want to be able to handle deep links like this :
appnm://typeA/12
appnm://typeA/42
appnm://typeA/99
....
appnm://typeB/43
appnm://typeB/092
appnm://typeB/....
Do I have to make two activities - for type A and for type B. Or can I handle both in one activity ? For example, would that work :
data android:scheme="appnm" android:host="" android:pathPrefix="/" />
when I type in some note on the phone "http:// ..." it automatically gives me the option to enter it like a link. However in my case "appnm://..." it doesn't. So how can I test the deeplink with a custom scheme ?