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

Commit 0ea34207 authored by Xin Li's avatar Xin Li
Browse files

Merge Android 13 QPR3 tm-qpr-dev-plus-aosp-without-vendor@9936994

Bug: 275386652
Merged-In: Idf6dc5a825f7541912a7bb891ce8f2b5b52aea9f
Change-Id: I1759d6a65bde0446b487a4c167a6731bf3bd5b4f
parents 0bb4ab98 2996ad8b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -77,6 +77,7 @@ java_defaults {
        "SettingsLibSettingsTheme",
        "SystemUI-statsd",
        "styleprotoslite",
        "androidx.lifecycle_lifecycle-livedata-ktx",
        "androidx.lifecycle_lifecycle-runtime-ktx",
        "androidx.lifecycle_lifecycle-viewmodel-ktx",
        "androidx.recyclerview_recyclerview",
+1 −0
Original line number Diff line number Diff line
+src/
+src_override/
+tests/
-src/com/android/customization/module/SysUiStatsLogger.kt
+43 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--

     Copyright (C) 2023 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.
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:height="@dimen/component_color_selected_small_diameter_default"
        android:width="@dimen/component_color_selected_small_diameter_default"
        android:gravity="center">
        <shape
            android:shape="ring"
            android:innerRadius="@dimen/component_color_overflow_small_radius_default"
            android:thickness="2dp"
            android:useLevel="false">
            <solid android:color="@color/text_color_primary"/>
        </shape>
    </item>
    <item
        android:height="@dimen/component_color_selected_small_diameter_default"
        android:width="@dimen/component_color_selected_small_diameter_default"
        android:gravity="center">
        <shape
            android:shape="ring"
            android:innerRadius="@dimen/component_color_overflow_small_radius_default"
            android:thickness="-3dp"
            android:useLevel="false">
            <solid android:color="@color/color_surface"/>
        </shape>
    </item>
</layer-list>
 No newline at end of file
+34 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--

     Copyright (C) 2023 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.
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:height="@dimen/component_color_overflow_small_diameter_default"
        android:width="@dimen/component_color_overflow_small_diameter_default"
        android:gravity="center">
        <shape
            android:shape="ring"
            android:innerRadius="@dimen/component_color_overflow_small_radius_default"
            android:thickness="-1dp"
            android:useLevel="false">
            <solid android:color="@color/color_surface_variant"/>
        </shape>
    </item>
    <item
        android:drawable="@drawable/ic_more_horiz"
        android:gravity="center"/>
</layer-list>
 No newline at end of file
Loading