This repository has been archived by the owner on Aug 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
AndroidManifest.xml
49 lines (46 loc) · 2.26 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.sitewaerts.cleverdox.viewer"
android:versionCode="8"
android:versionName="1.4.0"
xmlns:tools="http://schemas.android.com/tools">
<!-- write includes read and MuPDF has the ability to modify documents -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- required for cloud print -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- 16: Android 4.2 JELLY BEAN-->
<!-- 17: Android 4.2 JELLY BEAN MR!-->
<!-- 19: Android 4.4.2 -->
<!-- 25: Android 7 -->
<!-- cannot use 25 here, as this would break compatibilty with old versions of cordova-plugin-document-viewer -->
<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="19"/>
<supports-screens android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
tools:replace="icon, label">
<activity android:name="SplashScreenActivity"
android:theme="@android:style/Theme.Holo.Light">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name="DocumentViewerActivity"
android:theme="@style/SitewaertsCleverdoxViewerTheme">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.EMBED"/>
</intent-filter>
</activity>
<activity android:name="NavigationViewActivity"
android:theme="@android:style/Theme.Holo.Light">
</activity>
<activity android:name="PrintActivity"
android:theme="@android:style/Theme.Holo.Light">
</activity>
</application>
</manifest>