diff options
| -rw-r--r-- | api/current.xml | 11 | ||||
| -rw-r--r-- | core/java/android/provider/Settings.java | 14 |
2 files changed, 25 insertions, 0 deletions
diff --git a/api/current.xml b/api/current.xml index 17f824b4e8d8..876fe00ab525 100644 --- a/api/current.xml +++ b/api/current.xml @@ -143144,6 +143144,17 @@ visibility="public" > </field> +<field name="ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS" + type="java.lang.String" + transient="false" + volatile="false" + value=""android.settings.MANAGE_ALL_APPLICATIONS_SETTINGS"" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="ACTION_MANAGE_APPLICATIONS_SETTINGS" type="java.lang.String" transient="false" diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 69151dff34d0..1dd2420048ff 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -355,6 +355,20 @@ public final class Settings { "android.settings.MANAGE_APPLICATIONS_SETTINGS"; /** + * Activity Action: Show settings to manage all applications. + * <p> + * In some cases, a matching Activity may not exist, so ensure you + * safeguard against this. + * <p> + * Input: Nothing. + * <p> + * Output: Nothing. + */ + @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) + public static final String ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS = + "android.settings.MANAGE_ALL_APPLICATIONS_SETTINGS"; + + /** * Activity Action: Show screen of details about a particular application. * <p> * In some cases, a matching Activity may not exist, so ensure you |