FileDocCategorySizeDatePackage
DefaultActivity.javaAPI DocAndroid 1.5 API2112Wed May 06 22:41:08 BST 2009com.android.sdksetup

DefaultActivity

public class DefaultActivity extends android.app.Activity
Entry point for SDK SetupWizard.

Fields Summary
Constructors Summary
Methods Summary
protected voidonCreate(android.os.Bundle icicle)

        super.onCreate(icicle);
        
        // Add a persistent setting to allow other apps to know the device has been provisioned.
        Settings.Secure.putInt(getContentResolver(), Settings.Secure.DEVICE_PROVISIONED, 1);

        // Enable the GPS.
        // Not needed since this SDK will contain the Settings app.
        LocationManager locationManager = (LocationManager)getSystemService(LOCATION_SERVICE);
        Settings.Secure.putString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED, LocationManager.GPS_PROVIDER);
        locationManager.updateProviders();
        
        // enable install from non market
        Settings.Secure.putInt(getContentResolver(), Settings.Secure.INSTALL_NON_MARKET_APPS, 1);

        // remove this activity from the package manager.
        PackageManager pm = getPackageManager();
        ComponentName name = new ComponentName(this, DefaultActivity.class);
        pm.setComponentEnabledSetting(name, PackageManager.COMPONENT_ENABLED_STATE_DISABLED, 0);

        // terminate the activity.
        finish();