AlarmManager wont fire pending intent
问题 I try to use AlarmManager with BroadcastReceiver. My problem is that I dont get the intent fire from the AlarmManager. Im not getting any call from Log.i("test", "test") Here is my code: public void activityCheck() { Intent intent = new Intent(this.getApplicationContext(), com.example.workoutlog.UsageCheckService.class); intent.putExtra("nofitication", "nofitication"); PendingIntent service = PendingIntent.getService(this, 0, intent, 0); AlarmManager m = (AlarmManager) this.getSystemService