解决激光推送手机运行时内存杀死进程依然能收到推送

wKiom1W056Pw_cGPAANTi1YTc7A130.jpg


  } 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());

        }


你可能感兴趣的:(解决激光推送手机运行时内存杀死进程依然能收到推送)