diff options
Diffstat (limited to 'core/java/android/provider/Settings.java')
| -rw-r--r-- | core/java/android/provider/Settings.java | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index e5b58dc..841a076 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -4782,17 +4782,24 @@ public final class Settings { /** * Whether the package manager should send package verification broadcasts for verifiers to * review apps prior to installation. - * + * @deprecated moved to Settings.Global * 1 = request apps to be verified prior to installation, if a verifier exists. * 0 = do not verify apps before installation * {@hide} */ + @Deprecated public static final String PACKAGE_VERIFIER_ENABLE = "package_verifier_enable"; - /** Timeout for package verification. {@hide} */ + /** Timeout for package verification. + * @deprecated moved to Settings.Global + * {@hide} */ + @Deprecated public static final String PACKAGE_VERIFIER_TIMEOUT = "verifier_timeout"; - /** Default response code for package verification. {@hide} */ + /** Default response code for package verification. + * @deprecated moved to Settings.Global + * {@hide} */ + @Deprecated public static final String PACKAGE_VERIFIER_DEFAULT_RESPONSE = "verifier_default_response"; /** {@hide} */ @@ -5272,6 +5279,23 @@ public final class Settings { public static final String NTP_TIMEOUT = "ntp_timeout"; /** + * Whether the package manager should send package verification broadcasts for verifiers to + * review apps prior to installation. + * 1 = request apps to be verified prior to installation, if a verifier exists. + * 0 = do not verify apps before installation + * {@hide} + */ + public static final String PACKAGE_VERIFIER_ENABLE = "package_verifier_enable"; + + /** Timeout for package verification. + * {@hide} */ + public static final String PACKAGE_VERIFIER_TIMEOUT = "verifier_timeout"; + + /** Default response code for package verification. + * {@hide} */ + public static final String PACKAGE_VERIFIER_DEFAULT_RESPONSE = "verifier_default_response"; + + /** * The interval in milliseconds at which to check packet counts on the * mobile data interface when screen is on, to detect possible data * connection problems. |
