[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.
This commit is contained in:
lioncash 2013-10-01 09:31:02 -04:00
parent cb9ff3d9f8
commit c3c1afcc09

View File

@ -19,7 +19,8 @@
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
android:label="@string/app_name"
android:allowBackup="true">
<activity
android:name="org.dolphinemu.dolphinemu.DolphinEmulator"
android:configChanges="locale|keyboard|keyboardHidden|navigation|fontScale|uiMode"