aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2017-02-10 17:49:23 +0100
committerChristian Schneppe <christian@pix-art.de>2017-02-10 17:49:23 +0100
commit1bfc1103dc286163043ea2cfefa096a592ccca05 (patch)
treec571a0eec51d6fb0495357a6e517257d3abce368 /src/main/AndroidManifest.xml
parent555d0a46f3e463e280e029b3574c4bed10740c98 (diff)
don't allow google to upload app data ...
.. for backup and restore due to privacy issues
Diffstat (limited to 'src/main/AndroidManifest.xml')
-rw-r--r--src/main/AndroidManifest.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index c8b696605..a4361cb13 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -27,12 +27,13 @@
<application
android:name="android.support.multidex.MultiDexApplication"
- android:allowBackup="true"
+ android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:theme="@style/ConversationsTheme"
- tools:replace="android:label">
+ tools:replace="android:label, android:allowBackup" >
+
<service android:name="de.pixart.messenger.services.XmppConnectionService" />
<receiver android:name="de.pixart.messenger.services.EventReceiver">
@@ -68,7 +69,6 @@
android:name="de.pixart.messenger.ui.ConversationActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
-
android:minWidth="300dp"
android:minHeight="300dp"
android:windowSoftInputMode="stateHidden"></activity>