summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/experimental/LOAndroid3/AndroidManifest.xml.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/android/experimental/LOAndroid3/AndroidManifest.xml.in b/android/experimental/LOAndroid3/AndroidManifest.xml.in
index 3a17f6297e07..244c6db60ee5 100644
--- a/android/experimental/LOAndroid3/AndroidManifest.xml.in
+++ b/android/experimental/LOAndroid3/AndroidManifest.xml.in
@@ -16,7 +16,9 @@
android:icon="@drawable/main"
android:label="@string/app_name"
android:hardwareAccelerated="true"
- android:theme="@style/AppTheme">
+ android:theme="@style/AppTheme"
+ android:largeHeap="false">
+
<!-- Viewer Activity -->
<activity
android:name=".LibreOfficeMainActivity"
@@ -28,6 +30,9 @@
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
+ <data android:scheme="file"/>
+ <data android:scheme="content"/>
+
<!-- Please keep this in sync with FileUtilities.java. -->
<!-- ODF -->
@@ -83,6 +88,7 @@
</intent-filter>
</activity>
+
<!-- Document Browser Activity -->
<activity android:name=".ui.LibreOfficeUIActivity"
android:label="@string/app_name">
@@ -91,6 +97,7 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
+
</application>
</manifest>