You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Foreground service exists, but we need to handle restart failure. SensorHubService.java The wakelocks are released. No proper error handling at all and fails silently.
try {
sensorhub.start();
} catch (SensorHubException e) {
e.printStackTrace(); // ← user is not informed of whats happening.
releaseWakeLocks(); // ← locks released, but service keeps running
}
SensorHubService.javaThe wakelocks are released. No proper error handling at all and fails silently.