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

Commit 6d56fbbc authored by Xin Li's avatar Xin Li
Browse files

Merge 24Q4 (ab/12406339) into aosp-main-future

Bug: 370570306
Merged-In: Id880c2a752e8b6cc5fb9337b4fe6e294d59687b1
Change-Id: I563eb2e6b10c98f9f60c9680e5f50ff0541ad7eb
parents 099d29f0 8475450c
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -80,6 +80,16 @@
            android:theme="@style/CustomizationTheme.NoActionBar"
            android:exported="false"/>

        <activity
            tools:node="replace"
            android:name="com.android.wallpaper.picker.customization.ui.CustomizationPickerActivity2"
            android:label="@string/app_name"
            android:relinquishTaskIdentity="true"
            android:resizeableActivity="false"
            android:theme="@style/WallpaperTheme"
            android:configChanges="assetsPaths"
            android:exported="false"/>

        <activity
            tools:node="replace"
            android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
        <shape
            android:shape="ring"
            android:innerRadius="@dimen/component_color_overflow_small_radius_default"
            android:thickness="-1dp"
            android:thickness="-2dp"
            android:useLevel="false">
            <solid android:color="@color/system_outline"/>
        </shape>
+1 −1
Original line number Diff line number Diff line
@@ -16,6 +16,6 @@

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/picker_section_icon_background" />
    <solid android:color="@color/system_surface_container" />
    <corners android:radius="18dp" />
</shape>
 No newline at end of file
+21 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2021 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.
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <size
        android:width="16dp"
        android:height="0dp" />
</shape>
+21 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2024 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.
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <size
        android:width="4dp"
        android:height="0dp" />
</shape>
Loading