Change settings only for emulator

am: c91a33d3df

Change-Id: Ie630b302fff2235977d512ca77e49abc3fd54895
This commit is contained in:
huans
2018-05-14 10:49:49 -07:00
committed by android-build-merger

View File

@@ -25,6 +25,7 @@ import android.location.LocationManager;
import android.os.Bundle; import android.os.Bundle;
import android.os.RemoteException; import android.os.RemoteException;
import android.os.ServiceManager; import android.os.ServiceManager;
import android.os.Build;
import android.provider.Settings; import android.provider.Settings;
/** /**
@@ -37,6 +38,8 @@ public class DefaultActivity extends Activity {
protected void onCreate(Bundle icicle) { protected void onCreate(Bundle icicle) {
super.onCreate(icicle); super.onCreate(icicle);
// Edit Settings only for Emulator
if (Build.IS_EMULATOR) {
// Add a persistent setting to allow other apps to know the device has been provisioned. // Add a persistent setting to allow other apps to know the device has been provisioned.
Settings.Global.putInt(getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 1); Settings.Global.putInt(getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 1);
@@ -56,6 +59,8 @@ public class DefaultActivity extends Activity {
// enable install from non market // enable install from non market
Settings.Global.putInt(getContentResolver(), Settings.Global.INSTALL_NON_MARKET_APPS, 1); Settings.Global.putInt(getContentResolver(), Settings.Global.INSTALL_NON_MARKET_APPS, 1);
Settings.Secure.putInt(getContentResolver(),Settings.Secure.ADB_ENABLED, 1);
// provision the backup manager. // provision the backup manager.
IBackupManager bm = IBackupManager.Stub.asInterface( IBackupManager bm = IBackupManager.Stub.asInterface(
ServiceManager.getService(Context.BACKUP_SERVICE)); ServiceManager.getService(Context.BACKUP_SERVICE));
@@ -65,12 +70,12 @@ public class DefaultActivity extends Activity {
} catch (RemoteException e) { } catch (RemoteException e) {
} }
} }
}
// remove this activity from the package manager. // remove this activity from the package manager.
PackageManager pm = getPackageManager(); PackageManager pm = getPackageManager();
ComponentName name = new ComponentName(this, DefaultActivity.class); ComponentName name = new ComponentName(this, DefaultActivity.class);
pm.setComponentEnabledSetting(name, PackageManager.COMPONENT_ENABLED_STATE_DISABLED, 0); pm.setComponentEnabledSetting(name, PackageManager.COMPONENT_ENABLED_STATE_DISABLED, 0);
Settings.Secure.putInt(getContentResolver(),Settings.Secure.ADB_ENABLED, 1);
// terminate the activity. // terminate the activity.
finish(); finish();