Kaydet (Commit) 71e176c0 authored tarafından Jan Holesovsky's avatar Jan Holesovsky

android: Reformat for readibility.

Change-Id: Ib33d3ee0c78302b858b7c814e486c417276b7e7d
üst cfd74ae2
<?xml version="1.0" encoding="utf-8"?> <!-- -*- indent-tabs-mode: nil -*- --> <?xml version="1.0" encoding="utf-8"?> <!-- -*- indent-tabs-mode: nil -*- -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.libreoffice.android.examples" package="org.libreoffice.android.examples"
android:installLocation="preferExternal" android:installLocation="preferExternal"
android:versionCode="1" android:versionCode="1"
android:versionName="1.0"> android:versionName="1.0">
<uses-sdk android:minSdkVersion="15" <uses-sdk android:minSdkVersion="15"
android:targetSdkVersion="15"/> android:targetSdkVersion="15"/>
<application android:label="LO Experimental DocumentLoader" <application android:label="LO Experimental DocumentLoader"
android:debuggable="true" android:debuggable="true"
android:largeHeap="true" android:largeHeap="true"
......
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.libreoffice" package="org.libreoffice"
android:installLocation="preferExternal" android:installLocation="preferExternal"
android:versionCode="1" android:versionCode="1"
android:versionName="1.0"> android:versionName="1.0">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11"/> <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application <application android:debuggable="true"
android:debuggable="true"
android:largeHeap="true" android:largeHeap="true"
android:hardwareAccelerated="true" android:hardwareAccelerated="true"
android:icon="@drawable/lo_icon" android:icon="@drawable/lo_icon"
android:label="@string/app_name" > android:label="@string/app_name" >
<!-- Original Document Loader activity - file Viewer --> <!-- Original Document Loader activity - file Viewer -->
<activity android:name=".android.DocumentLoader" <activity android:name=".android.DocumentLoader"
android:theme="@style/DocumentViewer" android:theme="@style/DocumentViewer"
android:label="DocumentLoader" android:label="DocumentLoader"
android:configChanges="orientation|keyboardHidden"> android:configChanges="orientation|keyboardHidden">
<!-- <intent-filter> <!-- <intent-filter>
...@@ -25,11 +24,10 @@ ...@@ -25,11 +24,10 @@
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>--> </intent-filter>-->
</activity> </activity>
<!-- File Explorer Activities taken from eclipse workspace --> <!-- File Explorer Activities taken from eclipse workspace -->
<activity <activity android:name=".ui.LibreOfficeUIActivity"
android:name=".ui.LibreOfficeUIActivity" android:label="@string/app_name"
android:label="@string/app_name" android:theme="@style/Theme.Sherlock.Light.DarkActionBar">
android:theme="@style/Theme.Sherlock.Light.DarkActionBar">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
...@@ -39,6 +37,6 @@ ...@@ -39,6 +37,6 @@
<intent-filter android:label="writer_viewer"></intent-filter> <intent-filter android:label="writer_viewer"></intent-filter>
</activity> </activity>
<activity android:name=".ui.PreferenceEditor"></activity> <activity android:name=".ui.PreferenceEditor"></activity>
</application> </application>
</manifest> </manifest>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment