Files
android_translation_layer/src/api-impl/android/app/NotificationManager.java

10 lines
246 B
Java
Raw Normal View History

2023-01-14 14:32:37 +01:00
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");
}
2023-01-14 14:32:37 +01:00
}