diff options
| author | lioncash <mathew1900@hotmail.com> | 2013-10-01 09:31:02 -0400 |
|---|---|---|
| committer | lioncash <mathew1900@hotmail.com> | 2013-10-01 09:31:02 -0400 |
| commit | c3c1afcc091f71678f08b6bd1f232014b7f754de (patch) | |
| tree | 3b50725f046c0befecfdf25cfbee0dc3eb485fee /Source/Android | |
| parent | cb9ff3d9f89b326df52f76a3addb62f6cda3ceb5 (diff) | |
[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.
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/AndroidManifest.xml | 3 |
1 files changed, 2 insertions, 1 deletions
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 @@ <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" |
