diff options
| -rw-r--r-- | core/api/current.txt | 2 | ||||
| -rw-r--r-- | core/java/android/appwidget/AppWidgetProviderInfo.java | 2 | ||||
| -rw-r--r-- | core/res/res/values/attrs.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/api/current.txt b/core/api/current.txt index 8710e613602f..69e4d09e8588 100644 --- a/core/api/current.txt +++ b/core/api/current.txt @@ -8474,7 +8474,7 @@ package android.appwidget { field public static final int WIDGET_CATEGORY_HOME_SCREEN = 1; // 0x1 field public static final int WIDGET_CATEGORY_KEYGUARD = 2; // 0x2 field public static final int WIDGET_CATEGORY_SEARCHBOX = 4; // 0x4 - field public static final int WIDGET_FEATURE_CONFIGURATION_OPTIONAL = 3; // 0x3 + field public static final int WIDGET_FEATURE_CONFIGURATION_OPTIONAL = 4; // 0x4 field public static final int WIDGET_FEATURE_HIDE_FROM_PICKER = 2; // 0x2 field public static final int WIDGET_FEATURE_RECONFIGURABLE = 1; // 0x1 field public int autoAdvanceViewId; diff --git a/core/java/android/appwidget/AppWidgetProviderInfo.java b/core/java/android/appwidget/AppWidgetProviderInfo.java index 6ac1c1ae61ec..1cbb2fb3a8a3 100644 --- a/core/java/android/appwidget/AppWidgetProviderInfo.java +++ b/core/java/android/appwidget/AppWidgetProviderInfo.java @@ -121,7 +121,7 @@ public class AppWidgetProviderInfo implements Parcelable { * * @see #widgetFeatures */ - public static final int WIDGET_FEATURE_CONFIGURATION_OPTIONAL = 3; + public static final int WIDGET_FEATURE_CONFIGURATION_OPTIONAL = 4; /** @hide */ @IntDef(flag = true, prefix = { "FLAG_" }, value = { diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index 100983bcef0d..bb8d4139a161 100644 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -8154,7 +8154,7 @@ <flag name="hide_from_picker" value="0x2" /> <!-- The widget provides a default configuration. The host may decide not to launch the provided configuration activity. --> - <flag name="configuration_optional" value="0x3" /> + <flag name="configuration_optional" value="0x4" /> </attr> <!-- A resource identifier for a string containing a short description of the widget. --> <attr name="description" /> |