Sweet Juice v1 is the current stable release. It uses a native UI layer built on Material You (mu3 widgets) and a plugin system for system integrations.
WorkManager Plugin
The WorkManager plugin manages background tasks via the Android WorkManager API, supporting constraint-based one-time and periodic scheduling. Setup The WorkManager plugin is already registered in the default AppTemplate. Android Manifest <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" /> API workmanager.NewPlugin() *WorkManagerPlugin Creates a new WorkManager plugin instance. (*WorkManagerPlugin).RegisterTask(name string, fn TaskFunc) Registers a task function that can be executed by WorkManager. type TaskFunc func() error (*WorkManagerPlugin).EnqueueOneTime(taskKey string, constraints *Constraints) (string, error) Schedules a one-time background task. (*WorkManagerPlugin).EnqueuePeriodic(taskKey string, intervalMinutes int, constraints *Constraints, replaceExisting bool, runImmediate bool) (string, error) Schedules a repeating background task using enqueueUniquePeriodicWork. ...