I know how to invoke my app "App.A" on my android phone from html file using my android browser. The html is on my web server "App B" that is on my android as well, in html I added:
<a href="foo://App.A">Click me?</a>
And in my app "App A" I added the following to the AndroidManifest.xml file:
<intent-filter >
<data android:scheme="foo" android:host="App.A" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
When I go to my web server "App B" from my phone browser "192.168.0.196:8080" I can start my app "App A" by clicking "Click me?".
But when I tray to open the app "App A" from my PC browser I got: "The address wasn't understood" and I see on the web address:
foo://App.A
Any help please?