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

Commit 563d8b4e authored by Liana Kazanova (xWF)'s avatar Liana Kazanova (xWF) Committed by Android (Google) Code Review
Browse files

Revert "Implement user-type allowlist for Settings app on handhe..."

Revert submission 33407126-settings_allowlist

Reason for revert: DroidMonitor: Potential culprit for http://b/416032021 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted.

Bug: 416032021

Reverted changes: /q/submissionid:33407126-settings_allowlist

Change-Id: I17e5c1c4a0eebee4c3f8234951b457531d122ac1
parent cf862d01
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -30,6 +30,3 @@ PRODUCT_PACKAGES += \
    StorageManager \
    SystemUI \
    WallpaperCropper \

# Allowlist for system packages included in handheld_system_ext.mk
PRODUCT_PACKAGES += preinstalled_packages_handheld_system_ext.xml
+0 −7
Original line number Diff line number Diff line
@@ -55,13 +55,6 @@ prebuilt_etc {
    src: "preinstalled-packages-platform-telephony-product.xml",
}

prebuilt_etc {
    name: "preinstalled_packages_handheld_system_ext.xml",
    sub_dir: "sysconfig",
    system_ext_specific: true,
    src: "preinstalled_packages_handheld_system_ext.xml",
}

prebuilt_etc {
    name: "initial-package-stopped-states-aosp.xml",
    product_specific: true,
+0 −30
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2025 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<!-- Allowlist for system packages included in handheld_system_ext.mk -->
<config>
    <!--  Settings (Settings app) -->
    <!--  Do not install the Settings app for non-FULL SYSTEM user -->
    <!--  @TODO To revisit it again and see if this package still needs to
        be installed on all the PROFILE user types listed,
        b/408457689 - Only changing broader PROFILE to granual PROFILE types.
    -->
    <install-in-user-type package="com.android.settings">
        <install-in user-type="FULL" />
        <install-in user-type="android.os.usertype.profile.CLONE" />
        <install-in user-type="android.os.usertype.profile.MANAGED" />
        <install-in user-type="android.os.usertype.profile.PRIVATE" />
    </install-in-user-type>
</config>