I have an Intent Filter in the Manifest file to launch my Android app when a custom URI is clicked. For example, clicking a link with a custom protocol like "XXX://123912967326" from the browser on my Android phone will open my app.
Now, I'm using Google ARC welder to run the same Android app on chromebook/chrome OS. When i try clicking a link with the same custom protocol, I get an error pop up message "Chrome does not support launching an external application to handle 'XXX' links.
Is there any way for my Android app, running on a chromebook through Google ARC, to register 'XXX' links to be opened through the app?
Thanks in advance for any help!