fix: Android 14/15 crash

This commit is contained in:
Pun Butrach
2025-11-23 00:34:44 +07:00
parent d36845897b
commit edfd0baad6
1639 changed files with 146874 additions and 93622 deletions
@@ -17,7 +17,6 @@ package com.android.systemui.plugins.statusbar;
import android.annotation.Nullable;
import android.content.Context;
import android.graphics.Point;
import android.service.notification.StatusBarNotification;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
@@ -59,9 +58,22 @@ public interface NotificationMenuRowPlugin extends Plugin {
public View getMenuView();
public View getGutsView();
/**
* The guts content that provides the [View] to be displayed.
*
* @return Object of type [NotificationGuts.GutsContent]. The interface is not known in this
* module, therefore only the implementation returns the proper type.
*/
Object getGutsContent();
public String getContentDescription();
/**
* Set the name of the app for this menuitem.
*
* @param appName App name.
*/
void setAppName(String appName);
}
/**