I am getting this exception in my below given code. i don\'t have any idea what is wrong with this code. Please help me out to get rid of this exception.
05-
Delete setResultCode(). That is only for use with an ordered broadcast, as is described in the documentation for setResultCode().
The clean way to fix it would be to do as follows:
if (isOrderedBroadcast()) {
setResultCode(Activity.RESULT_OK);
}
For reference: https://groups.google.com/forum/#!topic/android-gcm/0J_RBzTQFHs