Add an entry in developer options for location tools.

This is a temporary place holder for location dogfood tools, which will
be removed before ship.

Bug:28383982
Change-Id: I814c9a71044c2f73a6346bdd46ecd40375c984b8
This commit is contained in:
Wei Wang
2016-04-25 21:52:03 -07:00
parent c2dae39ab4
commit e1c1a13cba
3 changed files with 16 additions and 0 deletions

View File

@@ -205,6 +205,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment
private static final String OTA_DISABLE_AUTOMATIC_UPDATE_KEY = "ota_disable_automatic_update";
private static final String LOCATION_DOGFOOD_TOOLS_KEY = "location_dogfood_tools";
private static final int RESULT_DEBUG_APP = 1000;
private static final int RESULT_MOCK_LOCATION_APP = 1001;
@@ -247,6 +249,7 @@ public class DevelopmentSettings extends RestrictedSettingsFragment
private String mMockLocationApp;
private Preference mMockLocationAppPref;
private Preference mLocationDogfoodTools;
private SwitchPreference mWaitForDebugger;
private SwitchPreference mVerifyAppsOverUsb;
@@ -394,6 +397,9 @@ public class DevelopmentSettings extends RestrictedSettingsFragment
mMockLocationAppPref = findPreference(MOCK_LOCATION_APP_KEY);
mAllPrefs.add(mMockLocationAppPref);
mLocationDogfoodTools = findPreference(LOCATION_DOGFOOD_TOOLS_KEY);
mAllPrefs.add(mLocationDogfoodTools);
mVerifyAppsOverUsb = findAndInitSwitchPref(VERIFY_APPS_OVER_USB_KEY);
if (!showVerifierSetting()) {
if (debugDebuggingCategory != null) {