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

Commit d52a9561 authored by Jeff Gaston's avatar Jeff Gaston Committed by android-build-merger
Browse files

Merge "Update for sdk drop" into pi-dev

am: 71436c63

Change-Id: I4485b4e775ff34ed383428f9f96de114c36c824f
parents c3bb24d6 71436c63
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