Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 12e807fb authored by Mike Lockwood's avatar Mike Lockwood Committed by Android (Google) Code Review
Browse files

Merge "MediaProvider: Add constants for media_table and media_id columns in MTP objects table"

parents 731e7940 fed16179
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -274,6 +274,19 @@ public final class MediaStore {
             * <P>Type: INTEGER</P>
             */
            public static final String PARENT = "parent";

            /**
             * Identifier for the media table containing the object.
             * Used internally by MediaProvider
             * <P>Type: INTEGER</P>
             */
            public static final String MEDIA_TABLE = "media_table";

            /**
             * The ID of the object in its media table.
             * <P>Type: INTEGER</P>
             */
            public static final String MEDIA_ID = "media_id";
        }
    }