- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
16 lines
407 B
Java
16 lines
407 B
Java
package com.helpshift;
|
|
|
|
import android.app.PendingIntent;
|
|
import android.content.Context;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class HSPluginEventBridge {
|
|
public static PendingIntent getPendingIntentForNotification(Context context, PendingIntent pendingIntent) {
|
|
return pendingIntent;
|
|
}
|
|
|
|
public static boolean shouldCallFirstForegroundEvent() {
|
|
return false;
|
|
}
|
|
}
|