Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54834482 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 8651

* changes:
  Backup manager should default to not "provisioned" so backups don't start until the setup wizard is done.
parents 2c3fc83a ab9a2a52
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -201,7 +201,7 @@ class BackupManagerService extends IBackupManager.Stub {
                Settings.Secure.BACKUP_ENABLED, 0) != 0;
        // !!! TODO: mProvisioned needs to default to 0, not 1.
        mProvisioned = Settings.Secure.getInt(context.getContentResolver(),
                Settings.Secure.BACKUP_PROVISIONED, 1) != 0;
                Settings.Secure.BACKUP_PROVISIONED, 0) != 0;
        mBaseStateDir = new File(Environment.getDataDirectory(), "backup");
        mDataDir = Environment.getDownloadCacheDirectory();