79768822

Date: 2025-09-18 19:02:11
Score: 0.5
Natty:
Report link

In the trigger, you need to specify the trigger type:

await Notifications.scheduleNotificationAsync({
        content: {
            title: "Daily Reminder",
            body: "It is a scheduled notification!",
            sound: "default",
            priority: Notifications.AndroidNotificationPriority.MAX,
        },
        trigger: {
            hour: 20, // ✅ 8:10 PM (24-hour format)
            minute: 10,
            repeats: true, // 🔄 Repeat every day
            useUTC: false,
            type: SchedulableTriggerInputTypes.DAILY, // ***NEED THIS HERE***
        },
    });

https://docs.expo.dev/versions/latest/sdk/notifications/#dailytriggerinput

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cory Harasha