Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[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.
  • Loading branch information
lioncash committed Oct 1, 2013
1 parent cb9ff3d commit c3c1afc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Android/AndroidManifest.xml
Expand Up @@ -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"
Expand Down

0 comments on commit c3c1afc

Please sign in to comment.