Merge "Change mounting storage data and obb to on by default" into sc-dev
This commit is contained in:
@@ -258,7 +258,7 @@ public final class Sm {
|
||||
|
||||
public void runDisableAppDataIsolation() throws RemoteException {
|
||||
if (!SystemProperties.getBoolean(
|
||||
ANDROID_VOLD_APP_DATA_ISOLATION_ENABLED_PROPERTY, false)) {
|
||||
ANDROID_VOLD_APP_DATA_ISOLATION_ENABLED_PROPERTY, true)) {
|
||||
throw new IllegalStateException("Storage app data isolation is not enabled.");
|
||||
}
|
||||
final String pkgName = nextArg();
|
||||
|
||||
@@ -825,7 +825,7 @@ static void MountEmulatedStorage(uid_t uid, jint mount_mode,
|
||||
PrepareDir(user_source, 0710, user_id ? AID_ROOT : AID_SHELL,
|
||||
multiuser_get_uid(user_id, AID_EVERYBODY), fail_fn);
|
||||
|
||||
bool isAppDataIsolationEnabled = GetBoolProperty(kVoldAppDataIsolation, false);
|
||||
bool isAppDataIsolationEnabled = GetBoolProperty(kVoldAppDataIsolation, true);
|
||||
|
||||
if (mount_mode == MOUNT_EXTERNAL_PASS_THROUGH) {
|
||||
const std::string pass_through_source = StringPrintf("/mnt/pass_through/%d", user_id);
|
||||
|
||||
@@ -1791,7 +1791,7 @@ class StorageManagerService extends IStorageManager.Stub
|
||||
public StorageManagerService(Context context) {
|
||||
sSelf = this;
|
||||
mVoldAppDataIsolationEnabled = SystemProperties.getBoolean(
|
||||
ANDROID_VOLD_APP_DATA_ISOLATION_ENABLED_PROPERTY, false);
|
||||
ANDROID_VOLD_APP_DATA_ISOLATION_ENABLED_PROPERTY, true);
|
||||
mContext = context;
|
||||
mResolver = mContext.getContentResolver();
|
||||
mCallbacks = new Callbacks(FgThread.get().getLooper());
|
||||
|
||||
@@ -786,7 +786,7 @@ public final class ProcessList {
|
||||
mAppDataIsolationEnabled =
|
||||
SystemProperties.getBoolean(ANDROID_APP_DATA_ISOLATION_ENABLED_PROPERTY, true);
|
||||
mVoldAppDataIsolationEnabled = SystemProperties.getBoolean(
|
||||
ANDROID_VOLD_APP_DATA_ISOLATION_ENABLED_PROPERTY, false);
|
||||
ANDROID_VOLD_APP_DATA_ISOLATION_ENABLED_PROPERTY, true);
|
||||
mAppDataIsolationAllowlistedApps = new ArrayList<>(
|
||||
SystemConfig.getInstance().getAppDataIsolationWhitelistedApps());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user