summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Newberger <alann@google.com>2016-05-06 14:31:02 -0700
committerArne Coucheron <arco68@gmail.com>2018-01-26 01:09:13 +0100
commit60469f9a262e7897c68456b6a27b11cb28fcecd8 (patch)
treea040ab54af2cf8d11229e542105da641218c5c36
parent372d35465d762a3b1538fd17f81e1021aafda562 (diff)
downloadandroid_packages_apps_Snap-60469f9a262e7897c68456b6a27b11cb28fcecd8.tar.gz
android_packages_apps_Snap-60469f9a262e7897c68456b6a27b11cb28fcecd8.tar.bz2
android_packages_apps_Snap-60469f9a262e7897c68456b6a27b11cb28fcecd8.zip
Grant read URI permission for playback of video capture
Current implementation of video capture UI configured MediaRecorder to output directly into supplied URI, which per recommendation should be a content: URI. We pass this URI to another app to play back the video, and should pass along the read permission. Bug: 19675889 Change-Id: Idfc0ee42422dde5d921e81f098d4697e652ac689
-rw-r--r--src/com/android/camera/VideoModule.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/camera/VideoModule.java b/src/com/android/camera/VideoModule.java
index c756ac856..8d438ee74 100644
--- a/src/com/android/camera/VideoModule.java
+++ b/src/com/android/camera/VideoModule.java
@@ -787,6 +787,7 @@ public class VideoModule implements CameraModule,
private void startPlayVideoActivity() {
Intent intent = new Intent(Intent.ACTION_VIEW);
+ intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
try {
mActivity