Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7639 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
package="com.artifex.mupdfdemo"
4
android:versionCode="50"
5
android:versionName="@string/version"
6
android:installLocation="auto">
7
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
8
<uses-permission android:name="android.permission.INTERNET" />
9
<supports-screens
10
android:smallScreens="true"
11
android:normalScreens="true"
12
android:largeScreens="true"
13
android:anyDensity="true" />
14
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/>
15
<application
16
android:label="@string/app_name"
17
android:icon="@drawable/icon"
18
android:hardwareAccelerated="true">
19
<activity
20
android:name="ChoosePDFActivity"
21
android:theme="@android:style/Theme.Light"
22
android:label="@string/app_name">
23
<intent-filter>
24
<action android:name="android.intent.action.MAIN"/>
25
<category android:name="android.intent.category.LAUNCHER"/>
26
</intent-filter>
27
</activity>
28
<activity
29
android:name="MuPDFActivity"
30
android:theme="@style/AppBaseTheme"
31
android:label="@string/app_name">
32
<intent-filter>
33
<action android:name="android.intent.action.VIEW"/>
34
<category android:name="android.intent.category.DEFAULT"/>
35
<data android:mimeType="application/vnd.ms-xpsdocument"/>
36
<data android:mimeType="application/xps"/>
37
</intent-filter>
38
<intent-filter>
39
<action android:name="android.intent.action.VIEW"/>
40
<category android:name="android.intent.category.DEFAULT"/>
41
<data android:mimeType="application/pdf"/>
42
</intent-filter>
43
<intent-filter>
44
<action android:name="android.intent.action.VIEW"/>
45
<category android:name="android.intent.category.DEFAULT"/>
46
<data android:mimeType="application/x-cbz"/>
47
</intent-filter>
48
<intent-filter>
49
<action android:name="android.intent.action.VIEW"/>
50
<category android:name="android.intent.category.DEFAULT"/>
51
<data android:mimeType="application/epub+zip"/>
52
</intent-filter>
53
<intent-filter>
54
<action android:name="android.intent.action.VIEW"/>
55
<category android:name="android.intent.category.DEFAULT"/>
56
<category android:name="android.intent.category.BROWSABLE"/>
57
<data android:scheme="file"/>
58
<data android:mimeType="*/*"/>
59
<data android:pathPattern=".*\\.xps"/>
60
<data android:host="*"/>
61
</intent-filter>
62
<intent-filter>
63
<action android:name="android.intent.action.VIEW"/>
64
<category android:name="android.intent.category.DEFAULT"/>
65
<category android:name="android.intent.category.BROWSABLE"/>
66
<data android:scheme="file"/>
67
<data android:mimeType="*/*"/>
68
<data android:pathPattern=".*\\.pdf"/>
69
<data android:host="*"/>
70
</intent-filter>
71
<intent-filter>
72
<action android:name="android.intent.action.VIEW"/>
73
<category android:name="android.intent.category.DEFAULT"/>
74
<category android:name="android.intent.category.BROWSABLE"/>
75
<data android:scheme="file"/>
76
<data android:mimeType="*/*"/>
77
<data android:pathPattern=".*\\.cbz"/>
78
<data android:host="*"/>
79
</intent-filter>
80
<intent-filter>
81
<action android:name="android.intent.action.VIEW"/>
82
<category android:name="android.intent.category.DEFAULT"/>
83
<category android:name="android.intent.category.BROWSABLE"/>
84
<data android:scheme="file"/>
85
<data android:mimeType="*/*"/>
86
<data android:pathPattern=".*\\.epub"/>
87
<data android:host="*"/>
88
</intent-filter>
89
</activity>
90
<activity
91
android:name="OutlineActivity"
92
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
93
android:label="@string/outline_title">
94
</activity>
95
<activity
96
android:name="PrintDialogActivity"
97
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
98
android:label="@string/print">
99
</activity>
100
</application>
101
</manifest>
102
103