diff options
author | Christopher Tate <ctate@google.com> | 2016-08-04 11:16:25 -0700 |
---|---|---|
committer | Christopher Tate <ctate@google.com> | 2016-08-04 11:45:55 -0700 |
commit | 8f4c82691a2801b2b162b7d92a8469e7b3dcb6d9 (patch) | |
tree | 48ce5590d890a2089c807be4200b7691180ca76f /packages/WallpaperBackup | |
parent | 85e3fee7d388ad2d43bed97b3f7604ba463f6cbf (diff) |
Mark wallpaper as backupInForeground="true"
It's fine for wallpaper backups to proceed even while the system uid
is considered to be doing something foreground-equivalent, since it's
in its own process and killing it won't interrupt the actual system
work.
Bug 30662562
Change-Id: I463c1ed221da17fbeb336b3be09d3b1ac47aca80
Diffstat (limited to 'packages/WallpaperBackup')
-rw-r--r-- | packages/WallpaperBackup/AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/WallpaperBackup/AndroidManifest.xml b/packages/WallpaperBackup/AndroidManifest.xml index b8cea20afcd4..c548101080b4 100644 --- a/packages/WallpaperBackup/AndroidManifest.xml +++ b/packages/WallpaperBackup/AndroidManifest.xml @@ -24,6 +24,7 @@ android:process="system" android:killAfterRestore="false" android:allowBackup="true" + android:backupInForeground="true" android:backupAgent=".WallpaperBackupAgent" android:fullBackupOnly="true" > </application> |