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

Commit 71436c63 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Update for sdk drop" into pi-dev

parents 2b26f83f c2100af2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -220,7 +220,8 @@
        android:supportsRtl="true"
        android:theme="@style/Theme.SystemUI"
        android:defaultToDeviceProtectedStorage="true"
        android:directBootAware="true">
        android:directBootAware="true"
        android:appComponentFactory="android.support.v4.app.CoreComponentFactory">
        <!-- Keep theme in sync with SystemUIApplication.onCreate().
             Setting the theme on the application does not affect views inflated by services.
             The application theme is set again from onCreate to take effect for those views. -->
+1 −0
Original line number Diff line number Diff line
@@ -41,3 +41,4 @@
-keep class com.android.systemui.plugins.** {
    public protected *;
}
-keep class android.support.v4.app.CoreComponentFactory
+2 −1
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ import org.mockito.MockitoAnnotations;

import java.util.Arrays;
import java.util.concurrent.TimeUnit;
import java.util.HashSet;

import androidx.slice.SliceItem;
import androidx.slice.SliceProvider;
@@ -66,7 +67,7 @@ public class KeyguardSliceProviderTest extends SysuiTestCase {
        MockitoAnnotations.initMocks(this);
        mProvider = new TestableKeyguardSliceProvider();
        mProvider.attachInfo(getContext(), null);
        SliceProvider.setSpecs(Arrays.asList(SliceSpecs.LIST));
        SliceProvider.setSpecs(new HashSet<>(Arrays.asList(SliceSpecs.LIST)));
    }

    @Test