Added foreground service option + other updates

This commit is contained in:
Imran Remtulla
2025-07-02 20:09:20 -04:00
parent 09d729261c
commit 918091ba54
36 changed files with 343 additions and 94 deletions

View File

@@ -498,4 +498,13 @@ class SettingsProvider with ChangeNotifier {
prefs?.setBool('shizukuPretendToBeGooglePlay', val);
notifyListeners();
}
bool get useFGService {
return prefs?.getBool('useFGService') ?? false;
}
set useFGService(bool val) {
prefs?.setBool('useFGService', val);
notifyListeners();
}
}