From c3c1afcc091f71678f08b6bd1f232014b7f754de Mon Sep 17 00:00:00 2001 From: lioncash Date: Tue, 1 Oct 2013 09:31:02 -0400 Subject: [PATCH] [Android] Explicitly specify the allowBackup attribute in the manifest. It's considered good practice to specify it, so why not? Basically it allows the application to be backed up or restored via ADB. --- Source/Android/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Android/AndroidManifest.xml b/Source/Android/AndroidManifest.xml index 9039d9d89f..38645cc8da 100644 --- a/Source/Android/AndroidManifest.xml +++ b/Source/Android/AndroidManifest.xml @@ -19,7 +19,8 @@ + android:label="@string/app_name" + android:allowBackup="true">