- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
506 B
Java
20 lines
506 B
Java
package com.ea.nimble.pushtng;
|
|
|
|
import com.ea.eadp.pushnotification.listeners.IPushListener;
|
|
import java.util.Date;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface IPushNotification {
|
|
String getDisableStatus();
|
|
|
|
boolean getRegistrationStatus();
|
|
|
|
void sendPendingTrackingRequests();
|
|
|
|
void startAsDisabled(String str, Date date, String str2, IPushListener iPushListener);
|
|
|
|
void startWithDefaults(String str, Date date, IPushListener iPushListener);
|
|
|
|
void updateToken(String str);
|
|
}
|