-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
90 lines (69 loc) · 3.34 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="veganaize.android.pdfview"
android:installLocation="auto" android:versionCode="40001" android:versionName="0.4.1"
>
<!--
version code:
x.y.z.d for EABI E : XYZDDE
0.3.5.2 for all becomes 35020
0.3.5.2 for intel becomes 35023
old development versions translate to sub (4-th place) versions (0.3.7dev05 is the same as 0.3.6.5),
versions with 0 at 4-th place are considered stable.
old version code:
xyz00E for x.y.z : 5.4.3 becomes 54300E
xyzDDE for x.y.(z+1)devDD : 5.4.4dev05 becomes 54305E
where E is eabi version:
- armeabi and armeabi-v7a and x86 is 0
- armeabi is 1
- armeabi-v7a is 2
- x86 is 3
this way armeabi-v7a will be chosen for devices supporting
armeabi and armeabi-v7a architectures
version code scheme will probably be revised to better fit what's described here:
<http://developer.android.com/guide/market/publishing/multiple-apks.html#VersionCodes>
-->
<!-- 3 is 1.5 or later, that's more than 99% of devices -->
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="17"/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:name="veganaize.android.pdfview.APVApplication"
android:icon="@drawable/pdfviewer"
android:label="@string/app_name"
android:allowBackup="true">
<activity android:name=".ChooseFileActivity" 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=".OpenFileActivity" android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:mimeType="application/pdf" android:scheme="file"></data>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:mimeType="application/pdf" android:scheme="content"></data>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:host="*" android:scheme="file"
android:pathPattern=".*\.[pP][dD][fF]" />
</intent-filter>
</activity>
<activity android:name=".AboutPDFViewActivity" android:label="@string/app_name" />
<activity android:name=".Options" android:label="@string/options" />
</application>
</manifest>