what-the-bank/sources/com/huawei/hms/adapter/sysobs/SystemNotifier.java

17 lines
387 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.huawei.hms.adapter.sysobs;
import android.content.Intent;
/* loaded from: classes2.dex */
public interface SystemNotifier {
void notifyNoticeObservers(int i);
void notifyObservers(int i);
void notifyObservers(Intent intent, String str);
void registerObserver(SystemObserver systemObserver);
void unRegisterObserver(SystemObserver systemObserver);
}