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

Commit 7fb333a3 authored by Sahil Sonar's avatar Sahil Sonar 💬
Browse files

FP5: overlay: Enable auto brightness by default

parent 0cb8ae63
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -329,6 +329,7 @@ PRODUCT_PACKAGES += \
    eCameraTarget \
    FrameworksResCommon \
    FrameworksResTarget \
    SettingsProviderRes \
    SettingsResCommon \
    SystemUIResCommon \
    SystemUIResTarget \
+8 −0
Original line number Diff line number Diff line
//
// Copyright (C) 2022 The LineageOS Project
// SPDX-License-Identifier: Apache-2.0
//
runtime_resource_overlay {
    name: "SettingsProviderRes",
    product_specific: true,
}
+13 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2022 The LineageOS Project
     SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.providers.settings.overlay">

    <overlay
        android:isStatic="true"
        android:priority="800"
        android:targetPackage="com.android.providers.settings" />
</manifest>
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2022 The Linux Foundation
     SPDX-License-Identifier: BSD-3-Clause
-->
<resources>
    <!-- Automatic Brightness -->
    <bool name="def_screen_brightness_automatic_mode">true</bool>
</resources>