Merge "Remove GROUP_ID; not actively being used by apps." into qt-dev

This commit is contained in:
Jeff Sharkey
2019-04-18 03:39:26 +00:00
committed by Android (Google) Code Review
3 changed files with 4 additions and 1 deletions

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";
/**