diff --git a/src/dev/oxmc/configprovisioner/BootReceiver.java b/src/dev/oxmc/configprovisioner/BootReceiver.java index 48ac0eb..4e5a3bd 100644 --- a/src/dev/oxmc/configprovisioner/BootReceiver.java +++ b/src/dev/oxmc/configprovisioner/BootReceiver.java @@ -25,14 +25,7 @@ public class BootReceiver extends BroadcastReceiver { return; } - // Check if vendor config exists - if not, exit gracefully - if (!VendorConfig.hasVendorConfig()) { - Log.i(TAG, "No vendor config found, provisioning not required"); - setProvisioned(context, true); // Mark as provisioned to not run again - return; - } - - // Start provisioning service + // Start provisioning service, it will check vendor config & defaults Intent serviceIntent = new Intent(context, ProvisioningService.class); serviceIntent.setAction(intent.getAction()); context.startService(serviceIntent);