Please help me to solve this problem guys.. The phone only receive message when the device is on. When it's off for some second around(20-30) by pressing the power button then it's stop receiving and will continue to recieve when it's on. This is my receiver.
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.i("GCM ", "GCM COME");
ComponentName comp = new ComponentName(context.getPackageName(),
MainService.class.getName());
startWakefulService(context, (intent.setComponent(comp)));
setResultCode(Activity.RESULT_OK);
}
}