summaryrefslogtreecommitdiff
path: root/android/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r--android/AndroidManifest.xml45
1 files changed, 26 insertions, 19 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index f4c0bc7d..612086c4 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -1,28 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.artifex.mupdf"
- android:versionCode="1"
- android:versionName="@string/version">
+ package="com.artifex.mupdf"
+ android:versionCode="1"
+ android:versionName="@string/version">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
- <supports-screens android:smallScreens="true"
- android:normalScreens="true"
- android:largeScreens="true"
- android:anyDensity="true" />
+ <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:debuggable="true"
- android:hardwareAccelerated="true">
- <activity android:name="ChoosePDFActivity"
- android:label="@string/app_name">
+ <application
+ android:label="@string/app_name"
+ android:icon="@drawable/icon"
+ android:debuggable="true"
+ 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:label="@string/app_name"
- android:theme="@android:style/Theme.NoTitleBar">
+ <activity
+ android:name="MuPDFActivity"
+ android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
+ android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
@@ -66,8 +71,10 @@
<data android:host="*"/>
</intent-filter>
</activity>
- <activity android:name="OutlineActivity"
- android:label="@string/outline_title">
- </activity>
+ <activity
+ android:name="OutlineActivity"
+ android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
+ android:label="@string/outline_title">
+ </activity>
</application>
</manifest>