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
15
src/api-impl/android/content/pm/ShortcutManager.java
Normal file
15
src/api-impl/android/content/pm/ShortcutManager.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package android.content.pm;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
public class ShortcutManager {
|
||||
public void removeAllDynamicShortcuts() {
|
||||
}
|
||||
|
||||
public List getShortcuts(int matchFlags) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
public void removeLongLivedShortcuts(List<String> shortcutIds) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user