summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:50 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:50 -0800
commit0664dd747f36abcc122a3d3e7c6ab1472681f510 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /AndroidManifest.xml
parentae36e6ba1ad74a7eb844a41c6c0fc1ecd3c66467 (diff)
downloadHTMLViewer-0664dd747f36abcc122a3d3e7c6ab1472681f510.tar.gz
auto import from //depot/cupcake/@135843
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml46
1 files changed, 0 insertions, 46 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
deleted file mode 100644
index b60a1cb..0000000
--- a/AndroidManifest.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<!--
-/* //device/apps/Browser/AndroidManifest.xml
-**
-** Copyright 2006, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-** http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
--->
-
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.android.htmlviewer">
-
- <application android:label="HTML Viewer">
- <activity android:name="HTMLViewerActivity" android:label="HTMLViewer"
- android:theme="@android:style/Theme.Light" >
- <intent-filter>
- <category android:name="android.intent.category.DEFAULT" />
- <action android:name="android.intent.action.VIEW" />
- <data android:scheme="file" />
- <data android:scheme="content" />
- <data android:mimeType="text/html"/>
- <data android:mimeType="text/plain"/>
- <data android:mimeType="application/xhtml+xml"/>
- <data android:mimeType="application/vnd.wap.xhtml+xml"/>
- </intent-filter>
- </activity>
-
- <provider android:name="FileContentProvider"
- android:authorities="com.android.htmlfileprovider"
- android:syncable="false" android:multiprocess="false"
- android:grantUriPermissions="true" />
-
- </application>
-
-</manifest>
-