I need to do a not complicated thing, one could believe. I want to get Event instances from calendars on my phone along with titles of the events. I found several answers on Stack Overflow telling to query Instances
table to get recurring events also, which I did, but I can't figure out how to get Event names from this query, because they are in Events
table. I found no example of how to do this. I tried to create a custom query by joining Events with Instances, but I don't know if it's even possible to query Calendar tables like this (bypassing API).
Do anybody know how to simply get all Event.TITLE
, Instance.DTSTART
for given start and end dates?