summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorChristofer Ã…kersten <akersten@google.com>2019-02-02 05:10:03 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2019-02-02 05:10:03 +0000
commit7c9ecba1bb3ada05d1a23469e254f84beee2551d (patch)
tree7976a44324d988a555e5c1711447709d3ae5d2e3 /AndroidManifest.xml
parent77532d11c5c6b069e5405f17b9385895d4ed6e56 (diff)
parent3091c8bc26b6f318551d2c48dd39eb7eb6b529c8 (diff)
downloadUniversalMediaPlayer-7c9ecba1bb3ada05d1a23469e254f84beee2551d.tar.gz
Merge changes I2ffb5621,I953468f1
* changes: Add todos for a/v intent filters Limit audio/video player to content: URIs for now
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index c241a0a..93b69b6 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -60,6 +60,8 @@
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
+ <!-- TODO(b/123768134) Investigate which schemes, mime types, etc to support -->
+ <data android:scheme="content"/>
<data android:mimeType="audio/*"/>
</intent-filter>
</activity>
@@ -70,6 +72,8 @@
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
+ <!-- TODO(b/123768100) Investigate which schemes, mime types, etc to support -->
+ <data android:scheme="content"/>
<data android:mimeType="video/*"/>
</intent-filter>
</activity>