summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-12-17 18:05:56 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2008-12-17 18:05:56 -0800
commitae36e6ba1ad74a7eb844a41c6c0fc1ecd3c66467 (patch)
tree902c3db239f91bdfc3e26c80a43d87220b3695bf /AndroidManifest.xml
parentdbdb2a036901f82d3bb27e35a8140206da2328dd (diff)
downloadHTMLViewer-ae36e6ba1ad74a7eb844a41c6c0fc1ecd3c66467.tar.gz
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 9ac9b29..b60a1cb 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -21,7 +21,6 @@
package="com.android.htmlviewer">
<application android:label="HTML Viewer">
-
<activity android:name="HTMLViewerActivity" android:label="HTMLViewer"
android:theme="@android:style/Theme.Light" >
<intent-filter>
@@ -34,7 +33,12 @@
<data android:mimeType="application/xhtml+xml"/>
<data android:mimeType="application/vnd.wap.xhtml+xml"/>
</intent-filter>
- </activity>
+ </activity>
+
+ <provider android:name="FileContentProvider"
+ android:authorities="com.android.htmlfileprovider"
+ android:syncable="false" android:multiprocess="false"
+ android:grantUriPermissions="true" />
</application>