Basic Android Alarm App, Broadcast Receiver's OnReceive() Method Not Being Called
I am working on an alarm app. I followed the Android AlarmController tutorial word for word with only some minor changes. For some reason my Broadcast Receiver's onReceive() meth
Solution 1:
Do you have your AlarmAction specified in your manifest?
E.g. <receiver android:process=":remote" android:name=".AlarmAction"/>
Post a Comment for "Basic Android Alarm App, Broadcast Receiver's OnReceive() Method Not Being Called"