解决激光推送手机运行时内存杀死进程依然能收到推送
} if (ACTION_BOOT.equals(intent.getAction())||ACTION_NET_CHANGE.equals(intent.getAction())){
Intent service = new Intent(context,DownloadService.class);
context.startService(service);
Intent pSrvice = new Intent(context,PushService.class);
context.startService(service);
context.startService(pSrvice);
Log.v("TAG", "开机自动服务自动启动.....");
Toast.makeText(context, "push已启动", Toast.LENGTH_SHORT).show();
}else{
Log.d(TAG, "[MyReceiver] Unhandled intent - " + intent.getAction());
}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。