Merge "Translate sandboxed paths correctly for MediaStore.SCAN_FILE_CALL."
This commit is contained in:
committed by
Android (Google) Code Review
commit
609346bfd9
@@ -1761,6 +1761,7 @@ package android.provider {
|
||||
method @RequiresPermission(android.Manifest.permission.CLEAR_APP_USER_DATA) public static long getContributedMediaSize(android.content.Context, String, android.os.UserHandle) throws java.io.IOException;
|
||||
method @NonNull public static java.io.File getVolumePath(@NonNull String) throws java.io.FileNotFoundException;
|
||||
method @NonNull public static java.util.Collection<java.io.File> getVolumeScanPaths(@NonNull String) throws java.io.FileNotFoundException;
|
||||
field public static final String EXTRA_ORIGINATED_FROM_SHELL = "android.intent.extra.originated_from_shell";
|
||||
field public static final String SCAN_FILE_CALL = "scan_file";
|
||||
field public static final String SCAN_VOLUME_CALL = "scan_volume";
|
||||
}
|
||||
|
||||
@@ -109,6 +109,16 @@ public final class MediaStore {
|
||||
/** {@hide} */ @TestApi
|
||||
public static final String SCAN_VOLUME_CALL = "scan_volume";
|
||||
|
||||
/**
|
||||
* Extra used with {@link #SCAN_FILE_CALL} or {@link #SCAN_VOLUME_CALL} to indicate that
|
||||
* the file path originated from shell.
|
||||
*
|
||||
* {@hide}
|
||||
*/
|
||||
@TestApi
|
||||
public static final String EXTRA_ORIGINATED_FROM_SHELL =
|
||||
"android.intent.extra.originated_from_shell";
|
||||
|
||||
/**
|
||||
* The method name used by the media scanner and mtp to tell the media provider to
|
||||
* rescan and reclassify that have become unhidden because of renaming folders or
|
||||
|
||||
Reference in New Issue
Block a user