You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
api-impl: stubs and fixes for latest WhatsApp version
This commit is contained in:
committed by
Julian Winkler
parent
09a38f9a28
commit
c81442321e
@@ -1,6 +1,8 @@
|
||||
package android.app;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
|
||||
@@ -106,4 +108,14 @@ public class NotificationManager {
|
||||
protected native void nativeShowMPRIS(String packageName, String identiy);
|
||||
protected native void nativeCancel(int id);
|
||||
protected native void nativeCancelMPRIS();
|
||||
|
||||
public void createNotificationChannelGroup(NotificationChannelGroup v) {}
|
||||
|
||||
public List<NotificationChannel> getNotificationChannels() {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
public List<NotificationChannelGroup> getNotificationChannelGroups() {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user