Expo-notifications: monthly notifications on Android and iOS (SDK 38)

Please provide the following:

  1. SDK Version: 38.0.0
  2. Platforms(Android/iOS/web/all): Android / iOS

With SDK 37 I was able to schedule simple monthly notifications on Android and iOS, using the Notifications module from Expo.

Notifications. scheduleLocalNotificationAsync(
    localNotification : {
        title: "Hello!",
        body: "This is a monthly notification",
    },
    schedulingOptions: {
        time: timestamp,
        repeat: "month",
    }
});

With the new module expo-notifications it looks impossible for Android. It supports TimeInterval and Daily triggers, but not weekly or monthly.
The CalendarNotificationTrigger is available only on iOS :confused:

How can I config my monthly notification?

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.