I'm attempting to use the Tizen SDK on a Gear S3 in order to list all events in the calendar. When I attempt to do this, I receive 0 events even though I the in built Calendar widget lists multiple. When I enumerate and list the Calendar Books, I only receive the 3 default books (events, todos, birthdays). How do I access the calendar books from other accounts such as active sync, google, live, etc? The following is how I'm iterating over the books (no errors are received):
calendar_error_e error = CALENDAR_ERROR_NONE;
calendar_connect();
calendar_list_h list = NULL;
error = calendar_db_get_all_records(_calendar_book._uri, 0, 0, &list);
char* outstr1 = NULL;
char* outstr2 = NULL;
char* outstr3 = NULL;
calendar_record_h record = NULL;
error = calendar_list_get_current_record_p(list, &record);
error = calendar_record_get_str_p (record, _calendar_book.name, &outstr1);
error = calendar_list_next(list);
error = calendar_list_get_current_record_p(list, &record);
error = calendar_record_get_str_p (record, _calendar_book.name, &outstr2);
error = calendar_list_next(list);
error = calendar_list_get_current_record_p(list, &record);
error = calendar_record_get_str_p (record, _calendar_book.name, &outstr3);