diff options
author | 2019-12-19 17:24:48 +0000 | |
---|---|---|
committer | 2020-01-15 01:55:31 +0000 | |
commit | 30f947d6f62aa725635c8e8f9989ad83d6b29e6e (patch) | |
tree | 51b8222f8efd15d7644d8340ff3e969f172ecbbd | |
parent | dc82d9e659fbcbfd7e58e2f830105e13391c2917 (diff) |
Enable app data isolation by default
Bug: 143937733
Test: Device boots normally
Change-Id: I98619e5e520c7a16ba25ef22133d969ab84aa5ef
-rw-r--r-- | cmds/installd/InstalldNativeService.cpp | 2 |
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; } |