diff options
| -rw-r--r-- | api/current.txt | 1 | ||||
| -rw-r--r-- | api/removed.txt | 1 | ||||
| -rw-r--r-- | core/java/android/provider/MediaStore.java | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/api/current.txt b/api/current.txt index a24346f5abed..695716124720 100644 --- a/api/current.txt +++ b/api/current.txt @@ -38515,7 +38515,6 @@ package android.provider { field public static final String DISPLAY_NAME = "_display_name"; field public static final String DOCUMENT_ID = "document_id"; field public static final String DURATION = "duration"; - field public static final String GROUP_ID = "group_id"; field public static final String HEIGHT = "height"; field public static final String INSTANCE_ID = "instance_id"; field public static final String IS_PENDING = "is_pending"; diff --git a/api/removed.txt b/api/removed.txt index 883632623a83..ab5e7e5deeaa 100644 --- a/api/removed.txt +++ b/api/removed.txt @@ -539,6 +539,7 @@ package android.provider { } public static interface MediaStore.MediaColumns extends android.provider.BaseColumns { + field @Deprecated public static final String GROUP_ID = "group_id"; field @Deprecated public static final String HASH = "_hash"; field @Deprecated public static final String IS_TRASHED = "is_trashed"; field @Deprecated public static final String PRIMARY_DIRECTORY = "primary_directory"; diff --git a/core/java/android/provider/MediaStore.java b/core/java/android/provider/MediaStore.java index bff8328defa0..c50d003afcc0 100644 --- a/core/java/android/provider/MediaStore.java +++ b/core/java/android/provider/MediaStore.java @@ -1150,8 +1150,11 @@ public final class MediaStore { * {@code IMG1024.BURST001.JPG} and {@code IMG1024.BURST002.JPG} * will have the same {@link #GROUP_ID} because the first portion of * their filenames is identical. + * + * @removed */ @Column(value = Cursor.FIELD_TYPE_INTEGER, readOnly = true) + @Deprecated public static final String GROUP_ID = "group_id"; /** |