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

Commit 6303a794 authored by Jon's avatar Jon
Browse files

Merge branch 'ub-launcher3-master' into pi-dev

Bug: 74794600
Test: manual test
Change-Id: Ic459d478266085ba7e4e3bdda010fcfbc2c22552
parents 6cf6dd8b 658edc6e
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -87,7 +87,9 @@
            android:process=":wallpaper_chooser"
            android:permission="android.permission.BIND_JOB_SERVICE" />

        <service android:name="com.android.launcher3.notification.NotificationListener"
        <service
            android:name="com.android.launcher3.notification.NotificationListener"
            android:label="@string/icon_badging_service_title"
            android:enabled="@bool/notification_badging_enabled"
            android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
            <intent-filter>
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@
            android:clearTaskOnLaunch="true"
            android:stateNotNeeded="true"
            android:windowSoftInputMode="adjustPan"
            android:screenOrientation="nosensor"
            android:screenOrientation="unspecified"
            android:configChanges="keyboard|keyboardHidden|navigation"
            android:resizeableActivity="true"
            android:resumeWhilePausing="true"
+6 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
  public int getY();
}

-keep class com.android.launcher3.dragndrop.DragLayer$LayoutParams {
-keep class com.android.launcher3.views.BaseDragLayer$LayoutParams {
  public void setWidth(int);
  public int getWidth();
  public void setHeight(int);
@@ -102,6 +102,11 @@
    public <init>(...);
}

# InstantAppResolver
-keep class com.android.quickstep.InstantAppResolverImpl {
    public <init>(...);
}

-keep interface com.android.launcher3.userevent.nano.LauncherLogProto.** {
  *;
}
+22 −3
Original line number Diff line number Diff line
@@ -36,13 +36,32 @@
        android:restoreAnyVersion="true"
        android:supportsRtl="true" >

        <service android:name="com.android.quickstep.TouchInteractionService"
            android:exported="true" />
        <service
            android:name="com.android.quickstep.TouchInteractionService"
            android:permission="android.permission.STATUS_BAR_SERVICE" >
            <intent-filter>
                <action android:name="android.intent.action.QUICKSTEP_SERVICE" />
            </intent-filter>
        </service>

        <!-- STOPSHIP: Change exported to false once all the integration is complete.
        It is set to true so that the activity can be started from command line -->
        <activity android:name="com.android.quickstep.RecentsActivity"
            android:exported="true" />
            android:exported="true"
            android:excludeFromRecents="true" />

        <!-- Content provider to settings search -->
        <provider
            android:name="com.android.quickstep.LauncherSearchIndexablesProvider"
            android:authorities="com.android.launcher3"
            android:grantUriPermissions="true"
            android:multiprocess="true"
            android:permission="android.permission.READ_SEARCH_INDEXABLES"
            android:exported="true">
            <intent-filter>
                <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
            </intent-filter>
        </provider>
    </application>

</manifest>
+2.06 KiB (116 KiB)

File changed.

No diff preview for this file type.

Loading