summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ricky Wai <rickywai@google.com> 2019-12-19 17:24:48 +0000
committer Ricky Wai <rickywai@google.com> 2020-01-15 01:55:31 +0000
commit30f947d6f62aa725635c8e8f9989ad83d6b29e6e (patch)
tree51b8222f8efd15d7644d8340ff3e969f172ecbbd
parentdc82d9e659fbcbfd7e58e2f830105e13391c2917 (diff)
Enable app data isolation by default
Bug: 143937733 Test: Device boots normally Change-Id: I98619e5e520c7a16ba25ef22133d969ab84aa5ef
-rw-r--r--cmds/installd/InstalldNativeService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/InstalldNativeService.cpp b/cmds/installd/InstalldNativeService.cpp
index a10baa6b80..e7b0d5d122 100644
--- a/cmds/installd/InstalldNativeService.cpp
+++ b/cmds/installd/InstalldNativeService.cpp
@@ -273,7 +273,7 @@ status_t InstalldNativeService::start() {
ps->startThreadPool();
ps->giveThreadPoolName();
sAppDataIsolationEnabled = android::base::GetBoolProperty(
- kAppDataIsolationEnabledProperty, false);
+ kAppDataIsolationEnabledProperty, true);
return android::OK;
}