From 66445565ee3b6ae78cbfad112ca8d9b2466f55de Mon Sep 17 00:00:00 2001 From: Fabrice Di Meglio Date: Mon, 30 Jun 2014 13:11:53 -0700 Subject: [PATCH] Disable auto-backup for Settings App - we dont want Settings data to be backed-up so add android:allowBackup="false" to the AndroidManifest Change-Id: I1165a37ecdd18c6a6526ce8b9a9576d9bbfd415b --- AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index c8362f0f1c2..8d2bb1bdd1c 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -75,7 +75,8 @@ android:theme="@style/Theme.Settings" android:hardwareAccelerated="true" android:requiredForAllUsers="true" - android:supportsRtl="true"> + android:supportsRtl="true" + android:allowBackup="false">