Files
android_translation_layer/src/api-impl/android/app/NotificationManager.java
2023-10-14 18:29:33 +02:00

10 lines
246 B
Java

package android.app;
public class NotificationManager {
public void cancelAll() {}
public void notify(String tag, int id, Notification notification) {
System.out.println("notify(" + tag + ", " + id + ", " + notification + ") called");
}
}