Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to use Expo-calendar in my project.

I want to use the Calendar.createEventAsync(calendarId, details) which is working fine when it has both Calendar and Reminder permission.

However, my concern is about the Reminder-permission.

I use Calendar.getDefaultCalendarAsync() for getting the default calendar-id and then I use Calendar.createEventAsync() method to just create an event in Calendar.

I don't want to use Reminder, why do I need reminder permission(for ios)? Is there any way that I can just ask for Calendar permission for creating an event?

This is the documentation in Expo: Expo Calendar


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

The solution is to use:

 return await Calendar.getCalendarsAsync(Calendar.EntityTypes.EVENT);
}```

and then trying to create an Event:

async function createEvent() {
 try {
   const defaultCalendar = await Calendar.getDefaultCalendarAsync();

   await Calendar.createEventAsync(defaultCalendar.id, {
     title: 'TEST',
     startDate: new Date('2021-01-25'),
     endDate: new Date('2021-01-26'),
   });

   console.log('Event was created.');
 } catch (e) {
   console.log(e.message);
 }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...