summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-06-27 16:05:42 +0200
committerJan Holesovsky <kendy@collabora.com>2014-06-30 14:48:01 +0200
commit71e176c0205f916f04a3d8fa3908da4e6dd20f50 (patch)
tree05c65fa39f31f8a23e90c8b58dff03047d856fd6
parentcfd74ae2b9e77f6e0c515d91912fec6b5a632f9f (diff)
android: Reformat for readibility.
Change-Id: Ib33d3ee0c78302b858b7c814e486c417276b7e7d
-rw-r--r--android/experimental/DocumentLoader/AndroidManifest.xml12
-rw-r--r--android/experimental/LibreOffice4Android/AndroidManifest.xml36
2 files changed, 23 insertions, 25 deletions
diff --git a/android/experimental/DocumentLoader/AndroidManifest.xml b/android/experimental/DocumentLoader/AndroidManifest.xml
index 97815343fc79..366a1c909b3e 100644
--- a/android/experimental/DocumentLoader/AndroidManifest.xml
+++ b/android/experimental/DocumentLoader/AndroidManifest.xml
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <!-- -*- indent-tabs-mode: nil -*- -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.libreoffice.android.examples"
- android:installLocation="preferExternal"
- android:versionCode="1"
- android:versionName="1.0">
- <uses-sdk android:minSdkVersion="15"
- android:targetSdkVersion="15"/>
+ package="org.libreoffice.android.examples"
+ android:installLocation="preferExternal"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <uses-sdk android:minSdkVersion="15"
+ android:targetSdkVersion="15"/>
<application android:label="LO Experimental DocumentLoader"
android:debuggable="true"
android:largeHeap="true"
diff --git a/android/experimental/LibreOffice4Android/AndroidManifest.xml b/android/experimental/LibreOffice4Android/AndroidManifest.xml
index 068b04c292ea..ae54e9c5d44e 100644
--- a/android/experimental/LibreOffice4Android/AndroidManifest.xml
+++ b/android/experimental/LibreOffice4Android/AndroidManifest.xml
@@ -1,23 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.libreoffice"
- android:installLocation="preferExternal"
- android:versionCode="1"
- android:versionName="1.0">
-
+ package="org.libreoffice"
+ android:installLocation="preferExternal"
+ android:versionCode="1"
+ android:versionName="1.0">
+
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
-
- <application
- android:debuggable="true"
+
+ <application android:debuggable="true"
android:largeHeap="true"
android:hardwareAccelerated="true"
- android:icon="@drawable/lo_icon"
- android:label="@string/app_name" >
-
- <!-- Original Document Loader activity - file Viewer -->
+ android:icon="@drawable/lo_icon"
+ android:label="@string/app_name" >
+
+ <!-- Original Document Loader activity - file Viewer -->
<activity android:name=".android.DocumentLoader"
- android:theme="@style/DocumentViewer"
+ android:theme="@style/DocumentViewer"
android:label="DocumentLoader"
android:configChanges="orientation|keyboardHidden">
<!-- <intent-filter>
@@ -25,11 +24,10 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>-->
</activity>
- <!-- File Explorer Activities taken from eclipse workspace -->
- <activity
- android:name=".ui.LibreOfficeUIActivity"
- android:label="@string/app_name"
- android:theme="@style/Theme.Sherlock.Light.DarkActionBar">
+ <!-- File Explorer Activities taken from eclipse workspace -->
+ <activity android:name=".ui.LibreOfficeUIActivity"
+ android:label="@string/app_name"
+ android:theme="@style/Theme.Sherlock.Light.DarkActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
@@ -39,6 +37,6 @@
<intent-filter android:label="writer_viewer"></intent-filter>
</activity>
<activity android:name=".ui.PreferenceEditor"></activity>
-
+
</application>
</manifest>