super(context); Log.i(TAG, "Creating " + Context.WIFI_SCANNING_SERVICE);
if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { Log.i(TAG, "Registering " + Context.WIFI_SCANNING_SERVICE); if (mImpl == null) { mImpl = new WifiScanningServiceImpl(getContext()); } mImpl.startService(getContext()); }
mImpl = new WifiScanningServiceImpl(getContext()); Log.i(TAG, "Starting " + Context.WIFI_SCANNING_SERVICE); publishBinderService(Context.WIFI_SCANNING_SERVICE, mImpl);