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

Commit 8d7a1631 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 10188272 from 14812d99 to udc-release

Change-Id: Icd6ae122ea8cc17fdc877724a432eb7bc2f3ecc4
parents e509b7a2 14812d99
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -350,6 +350,7 @@ class ColorProvider(context: Context, stubPackageName: String) :
            when (colorScheme.style) {
                Style.FRUIT_SALAD -> intArrayOf(seed, colorScheme.accent1.s200)
                Style.TONAL_SPOT -> intArrayOf(colorScheme.accentColor, colorScheme.accentColor)
                Style.RAINBOW -> intArrayOf(colorScheme.accent1.s200, colorScheme.accent1.s200)
                else -> intArrayOf(colorScheme.accent1.s100, colorScheme.accent1.s100)
            }
        return intArrayOf(
+4 −0
Original line number Diff line number Diff line
package com.android.customization.module;

import android.app.WallpaperManager;
import android.os.Bundle;

import androidx.annotation.Nullable;
@@ -100,6 +101,7 @@ public final class DefaultCustomizationSections implements CustomizationSections
            DisplayUtils displayUtils,
            CustomizationPickerViewModel customizationPickerViewModel,
            WallpaperInteractor wallpaperInteractor,
            WallpaperManager wallpaperManager,
            boolean isTwoPaneAndSmallWidth) {
        List<CustomizationSectionController<?>> sectionControllers = new ArrayList<>();

@@ -118,6 +120,7 @@ public final class DefaultCustomizationSections implements CustomizationSections
                        wallpaperPreviewNavigator,
                        sectionNavigationController,
                        wallpaperInteractor,
                        wallpaperManager,
                        isTwoPaneAndSmallWidth)
                        : new ScreenPreviewSectionController(
                                activity,
@@ -128,6 +131,7 @@ public final class DefaultCustomizationSections implements CustomizationSections
                                displayUtils,
                                wallpaperPreviewNavigator,
                                wallpaperInteractor,
                                wallpaperManager,
                                isTwoPaneAndSmallWidth));

        sectionControllers.add(
+3 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@

package com.android.customization.picker.preview.ui.section

import android.app.WallpaperManager
import android.content.Context
import android.graphics.Rect
import android.os.Bundle
@@ -65,6 +66,7 @@ class PreviewWithClockCarouselSectionController(
    wallpaperPreviewNavigator: WallpaperPreviewNavigator,
    private val navigationController: CustomizationSectionNavigationController,
    wallpaperInteractor: WallpaperInteractor,
    wallpaperManager: WallpaperManager,
    private val isTwoPaneAndSmallWidth: Boolean,
) :
    ScreenPreviewSectionController(
@@ -76,6 +78,7 @@ class PreviewWithClockCarouselSectionController(
        displayUtils,
        wallpaperPreviewNavigator,
        wallpaperInteractor,
        wallpaperManager,
        isTwoPaneAndSmallWidth,
    ) {