I have a website that generates dynamic calendar (icalendar). Lets assume that this calendar is accessible over HTTP at a URL like this
http://www.example.com/cal?q=<user query>
Everything works fine so far.
Now I want to let the users subscribe to this calendar with their favourite calendar client.
For ios I can achieve this if I publish the calendar URL with the webcal://
URL scheme.
- Is there an equivalent URL scheme for Android ?
- Can I let the user import this calendar into his Google calendar ?
- Are there any other options that I didn't think about ?
Thank you