You can open Android apps from within Chrome using HTML links.
And I know that an intent from within an Android app to open the calendar is content://com.android.calendar/time
(How to use Calendar Intent?)
Now I want to create a HTML link to open the calendar app from within Chrome. Note, this is a scenario where my app is not installed on the Android device. So I cannot create App intents to redirect to the calendar app.
I imagine something like this:
intent://time#Intent;scheme=content;package=com.android.calendar;end
Unfortunately that link doesn't work — it opens a "Not found" page in the Play Store.
What am I missing? What would the link need to look like?
Source: Calendar App Manifest.xml
Possible duplicate: open android calendar with html link.