diff options
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/DeviceConfig.java | 13 | ||||
| -rw-r--r-- | core/java/android/provider/Settings.java | 17 |
2 files changed, 13 insertions, 17 deletions
diff --git a/core/java/android/provider/DeviceConfig.java b/core/java/android/provider/DeviceConfig.java index 87efbf3b2397..158d231dfd02 100644 --- a/core/java/android/provider/DeviceConfig.java +++ b/core/java/android/provider/DeviceConfig.java @@ -121,6 +121,19 @@ public final class DeviceConfig { String PROPERTY_RAMPING_RINGER_DURATION = "ramping_duration"; } + /** + * Namespace for Full Stack Integrity to run privileged apps only in JIT mode. The flag applies + * at process start, so reboot is a way to bring the device to a clean state. + * + * @hide + */ + @SystemApi + public interface FsiBoot { + String NAMESPACE = "fsi_boot"; + String OOB_ENABLED = "oob_enabled"; + String OOB_WHITELIST = "oob_whitelist"; + } + private static final Object sLock = new Object(); @GuardedBy("sLock") private static Map<OnPropertyChangedListener, Pair<String, Executor>> sListeners = diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index c9bb3cf9b915..d64ec406740e 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -9452,23 +9452,6 @@ public final class Settings { "hdmi_control_auto_device_off_enabled"; /** - * If <b>true</b>, enables out-of-the-box execution for priv apps. - * Default: false - * Values: 0 = false, 1 = true - * - * @hide - */ - public static final String PRIV_APP_OOB_ENABLED = "priv_app_oob_enabled"; - - /** - * Comma separated list of privileged package names, which will be running out-of-box APK. - * Default: "ALL" - * - * @hide - */ - public static final String PRIV_APP_OOB_LIST = "priv_app_oob_list"; - - /** * The interval in milliseconds at which location requests will be throttled when they are * coming from the background. * |
