bloc_lint
Official lint rules for development when using the bloc state management library.
Monitor running services on your Android device. With a clean and intuitive interface, you can easily view system and user apps, check their status efficiently.
Official lint rules for development when using the bloc state management library.
An extension to the bloc state management library which automatically persists and restores bloc states.
Code generator tool to make communication between Flutter and the host platform type-safe and easier.
Flutter plugin for launching Android Intents. Not supported on iOS.
A package for authoring build_runner compatible code generators.
Injectable is a convenient code generator for get_it. Inspired by Angular DI, Guice DI and inject.dart.
Injectable is a convenient code generator for get_it. Inspired by Angular DI, Guice DI and inject.dart.
Converts already built widgets into skeleton loaders with no extra effort.
Confetti animation in Flutter, a powerful and easy-to-use library to show amazing confetti effects.
On refresh indicator styled with Material 3 Expressive design system
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.9^3.1.0^4.12.0^9.2.1^3.0.0^9.2.1^9.1.1^11.0.0^2.1.6^6.3.2^6.0.0^17.3.0^0.20.2^1.19.1^0.1.2^1.0.0^1.8.1^2.1.3^1.2.0^4.5.3^0.28.0^0.6.0^1.0.9{"sdk":"flutter"}^6.0.0^2.15.0^4.0.6^3.2.5^6.14.0^0.4.1^3.0.2^27.1.0English project snapshot. Visit GitHub for the latest content.
License Flutter Platform Release GitHub stars GitHub Downloads F-Droid Downloads IzzyOnDroid Downloads
Running Services Monitor helps you monitor running services on your Android device. With a clean and intuitive interface, you can easily view system and user apps, check their status efficiently.
Get it on Google Play Get it at IzzyOnDroid Get it on F-Droid Get it on Amazon Appstore Get it on OpenAPK Download APK
Feature Graphic
Screenshots are stored in
fastlane/metadata/android/en-US/images/phoneScreenshots|
QUERY_ALL_PACKAGES - To list all installed appsDownload and install Shizuku from:
This app uses root access or Shizuku to execute privileged ADB commands:
dumpsys activity services to get running service informationStarting from Android 8.0 (API 26), the ActivityManager.getRunningServices() API was deprecated and restricted. Third-party apps can no longer query all running services on the device for privacy and security reasons.
Root access provides the most seamless experience:
Shizuku provides an alternative for non-rooted devices:
# Clone the repository
git clone https://github.com/biplobsd/running_services_monitor.git
cd running_services_monitor
# Get dependencies
flutter pub get
# Generate code (Freezed models and localization)
flutter gen-l10n
dart run build_runner build --delete-conflicting-outputs
# Run on connected device
flutter run
# Build release APK (universal)
flutter build apk --release
# Build release APK (split per ABI for smaller file sizes)
flutter build apk --release --split-per-abi
# Build App Bundle for Play Store
flutter build appbundle --release
Use the following prompt with an AI agent to automate the entire process:
Add <language> localization to this project:
1. Create app_<localeName>.arb in lib/l10n/ by translating all values from lib/l10n/app_en.arb. Keep the keys unchanged.
2. Add the new locale to AppConstants.languages in lib/core/constants.dart
3. Add the locale to android/app/src/main/res/xml/locales_config.xml
4. Run "flutter gen-l10n" and "dart run build_runner build --delete-conflicting-outputs" commands
5. how to create a PR for this change
After completion, verify all translations are correct.
Create a new app_<localeName>.arb file in lib/l10n/ (e.g., app_es.arb for Spanish)
Translate all fields from app_en.arb file to the new language
Add the new language to lib/core/constants.dart:
static const List<Lang> languages = [
Lang(Locale('en'), 'English'),
Lang(Locale('bn'), 'বাংলা'),
Lang(Locale('zh'), '简体中文'),
Lang(Locale('<localeName>'), '<Native Language Name>'), // Add here
];
Run the following commands in the project root:
flutter gen-l10n
dart run build_runner build --delete-conflicting-outputs
android/app/src/main/res/xml/locales_config.xml:<locale android:name="<localeName>" />
This project is licensed under the MIT License. Copyright (c) 2025 Biplob Kumar Sutradhar.
If you find this app useful, consider buying me a coffee:
Thanks to all the amazing people who have contributed to this project!
https://contrib.rocks/image?repo=biplobsd/running_services_monitorTop 6 Best Android Privacy Apps You Should Use in 2025 | Stop Tracking, Secure Files & Data
Top 6 Best Android Privacy Apps You Should Use in 2025 | Stop Tracking, Secure Files & Data by Anurag - The Geek
10 APPS DIFERENCIADOS pro seu Android! 🔥 (Dezembro 2025)
10 APPS DIFERENCIADOS pro seu Android! 🔥 (Dezembro 2025) by VegaData
7 Melhores APLICATIVOS para CELULAR em 2025 #51
7 Melhores APLICATIVOS para CELULAR em 2025 #51 by ODORIZZI
This app is for informational purposes only. It displays running services but does not modify system behavior. Use responsibly and respect user privacy.
Note: This app is designed for users who want to monitor running services on their device, similar to the "Running Services" feature that was available in Android Developer Options in older Android versions (before it was hidden in newer versions like HyperOS).