1

I am not able to receive the ACTION_TIME_CHANGED intent in my broadcast receiver class when I change the time from the phone. Is there anything in particular that I need to add in android.manifest?

I have already added

in broadcast receiver class:

else if((intent.getAction().equals(Intent.ACTION_TIME_CHANGED)) ||(intent.getAction().equals(Intent.ACTION_DATE_CHANGED ))){ 
    Log.d("ContactsAppReceiver", "ACTION_TIME_CHANGED");
}

And in manifest.xml file. :

<action android:name="android.intent.action.ACTION_TIME_CHANGED"/>
Shivam Kumar
  • 1,892
  • 2
  • 21
  • 33
scooby
  • 493
  • 11
  • 31

1 Answers1

2

Add to manifest:

<action android:name="android.intent.action.TIME_SET" />
Christian
  • 7,062
  • 9
  • 53
  • 79