implement AlarmManager and JobScheduler

This is needed for the bootstrap job when setting up WhatsApp in
companion device mode.

The implementation is based on `Handler.postDelayed()`, so jobs and
alarms are not persistent for now.
This commit is contained in:
Julian Winkler
2025-10-04 13:05:00 +02:00
parent a09aa53ecf
commit c60f8e3850
12 changed files with 232 additions and 15 deletions

View File

@@ -2221,4 +2221,6 @@ public class View implements Drawable.Callback {
public WindowInsets computeSystemWindowInsets(WindowInsets insets, Rect contentInsets) { return insets; }
public boolean isDuplicateParentStateEnabled() { return false; }
public void setBackgroundTintMode(PorterDuff.Mode tintMode) {}
}