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

Commit 822a77dc authored by Xin Li's avatar Xin Li
Browse files

Merge tm-dev-plus-aosp-without-vendor@8763363

Bug: 236760014
Merged-In: I2796bc076b3f326aa1af55b2e82e09246087ece1
Change-Id: I9bcb3a40bcb60cfb4b4cda59129235f14813134f
parents d58dc662 75c104b1
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -69,12 +69,19 @@ android_app {
    name: "ThemePicker",

    static_libs: [
        "guava",
        "monet",
	"renderscript_toolkit",
        "wallpaper-common-deps",
        "SettingsLibSettingsTheme",
        "SystemUI-statsd",
        "styleprotoslite",
    ],

    jni_libs: [
        "librenderscript-toolkit",
    ],

    srcs: [
        ":WallpaperPicker2_srcs",
        ":ThemePicker_srcs",
+18 −1
Original line number Diff line number Diff line
@@ -57,9 +57,26 @@
            android:theme="@style/CustomizationTheme.NoActionBar"
            android:exported="false"/>

        <activity
            tools:node="replace"
            android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
            android:label="@string/app_name"
            android:resizeableActivity="false"
            android:theme="@style/CustomizationTheme.NoActionBar"
            android:exported="false"/>

        <activity
            tools:node="replace"
            android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
            android:label="@string/app_name"
            android:relinquishTaskIdentity="true"
            android:resizeableActivity="false"
            android:theme="@style/CustomizationTheme.NoActionBar"
            android:exported="false"/>

        <activity-alias
            android:name="com.android.customization.picker.CustomizationPickerActivity"
            android:targetActivity="com.android.wallpaper.picker.CustomizationPickerActivity"
            android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
            android:label="@string/app_name"
            android:exported="true">
             <intent-filter>
+29 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--

     Copyright (C) 2022 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.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <corners
                android:topLeftRadius="@dimen/component_color_chip_small_size_default" />
            <size
                android:width="@dimen/component_color_chip_small_size_default"
                android:height="@dimen/component_color_chip_small_size_default" />
            <solid android:color="@android:color/black" />
        </shape>
    </item>
</selector>
 No newline at end of file
+29 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--

     Copyright (C) 2022 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.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
         <shape android:shape="rectangle">
            <corners
                android:bottomLeftRadius="@dimen/component_color_chip_small_size_default" />
            <size
                android:width="@dimen/component_color_chip_small_size_default"
                android:height="@dimen/component_color_chip_small_size_default" />
            <solid android:color="@android:color/black" />
        </shape>
    </item>
</selector>
 No newline at end of file
+29 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--

     Copyright (C) 2022 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.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <corners
                android:topRightRadius="@dimen/component_color_chip_small_size_default" />
            <size
                android:width="@dimen/component_color_chip_small_size_default"
                android:height="@dimen/component_color_chip_small_size_default" />
            <solid android:color="@android:color/black" />
        </shape>
    </item>
</selector>
 No newline at end of file
Loading