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

Commit fed16179 authored by Mike Lockwood's avatar Mike Lockwood
Browse files

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



Change-Id: I47396c637e483ea9c71bbb22898d69cb3d00b256
Signed-off-by: default avatarMike Lockwood <lockwood@android.com>
parent a6935ab0
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";
        }
    }