This repository was archived by the owner on Oct 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
28 lines (25 loc) · 1.61 KB
/
AndroidManifest.xml
File metadata and controls
28 lines (25 loc) · 1.61 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.smartmobilefactory.pdfviewer"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="preferExternal">
<uses-sdk android:minSdkVersion="8" android:maxSdkVersion="10" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
<activity android:name=".SplashScreenActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".pdfviewer.PdfViewerActivity" android:label="@string/app_name" android:configChanges="orientation" />
<activity android:name=".PDFViewerMainActivity" android:label="@string/app_name" android:screenOrientation="portrait" />
<activity android:name=".PDFViewerAboutActivity" android:label="@string/app_name" android:screenOrientation="portrait" />
<activity android:name=".BookSelectorActivity" android:label="@string/app_name" android:screenOrientation="portrait" />
<activity android:name=".SourceWebActivity" android:label="@string/app_name" android:screenOrientation="portrait" />
</application>
</manifest>