Unable to schedule notification with AlarmManager on Android (using Qt)
问题 I am doing the following from a qt 5.5. project. I am trying to schedule a local notification using the alarm manger in android. This is the code to schedule the notification: class ScheduledNotifications { static public int notification_id = 0; static int scheduleNotification(String title, String content, int futureInMilliseconds) { ++notification_id; Intent notificationIntent = new Intent(QtNative.activity(), NotificationPublisher.class); notificationIntent.putExtra(NotificationPublisher