android: Move service client into it's own file

The service file was getting harder to read so lets pull the client code
into it's own file
This commit is contained in:
Colin Edwards
2024-04-05 23:27:41 -05:00
parent 4c56e87e36
commit 4bcbeae1e0
6 changed files with 172 additions and 155 deletions

View File

@@ -27,7 +27,7 @@ public class Receiver extends BroadcastReceiver {
final boolean wakelock =
Preferences.getBoolean(context,
Preferences.KEY_WAKELOCK, false);
Main.start(context, wakelock);
Main.startService(context, wakelock);
}
}
}