I\'m about to insert some reminders on my app. Each of them will have different time. Reading about BroadcastReceiver the static version runs even when an app isn\'t running. Dy
While we define a dynamic broadcast receiver, the reminder will only trigger when the application is active to the user, if not the broadcast receiver won't get called and the user won't be able to get notified by the reminder. To do that the broadcast receiver must be declared static so that the reminder get triggered even if the application is closed. Just remember how the Alarm works :)