summaryrefslogtreecommitdiff
path: root/android/AndroidManifest.xml
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-06-19 15:29:44 +0200
committerTor Andersson <tor.andersson@artifex.com>2013-06-20 16:45:35 +0200
commit0a927854a10e1e6b9770a81e2e1d9f3093631757 (patch)
tree3d65d820d9fdba2d0d394d99c36290c851b78ca0 /android/AndroidManifest.xml
parent1ae8f19179c5f0f8c6352b3c7855465325d5449a (diff)
downloadmupdf-0a927854a10e1e6b9770a81e2e1d9f3093631757.tar.xz
Rearrange source files.
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r--android/AndroidManifest.xml86
1 files changed, 0 insertions, 86 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
deleted file mode 100644
index 040663e4..00000000
--- a/android/AndroidManifest.xml
+++ /dev/null
@@ -1,86 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.artifex.mupdfdemo"
- android:versionCode="50"
- android:versionName="@string/version"
- android:installLocation="auto">
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
- <uses-permission android:name="android.permission.INTERNET" />
- <supports-screens
- android:smallScreens="true"
- android:normalScreens="true"
- android:largeScreens="true"
- android:anyDensity="true" />
- <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="11"/>
- <application
- android:label="@string/app_name"
- android:icon="@drawable/icon"
- android:hardwareAccelerated="true">
- <activity
- android:name="ChoosePDFActivity"
- android:theme="@android:style/Theme.Light"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
- </intent-filter>
- </activity>
- <activity
- android:name="MuPDFActivity"
- android:theme="@style/AppBaseTheme"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <data android:mimeType="application/vnd.ms-xpsdocument"/>
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <data android:mimeType="application/pdf"/>
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <data android:mimeType="application/x-cbz"/>
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <category android:name="android.intent.category.BROWSABLE"/>
- <data android:scheme="file"/>
- <data android:mimeType="*/*"/>
- <data android:pathPattern=".*\\.xps"/>
- <data android:host="*"/>
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <category android:name="android.intent.category.BROWSABLE"/>
- <data android:scheme="file"/>
- <data android:mimeType="*/*"/>
- <data android:pathPattern=".*\\.pdf"/>
- <data android:host="*"/>
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <category android:name="android.intent.category.BROWSABLE"/>
- <data android:scheme="file"/>
- <data android:mimeType="*/*"/>
- <data android:pathPattern=".*\\.cbz"/>
- <data android:host="*"/>
- </intent-filter>
- </activity>
- <activity
- android:name="OutlineActivity"
- android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
- android:label="@string/outline_title">
- </activity>
- <activity
- android:name="PrintDialogActivity"
- android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
- android:label="@string/print">
- </activity>
- </application>
-</manifest>