bloc_lint
使用 bloc 状态管理库进行开发时的官方 lint 规则。
监控您的 Android 设备上正在运行的服务。通过简洁直观的界面,您可以轻松查看系统和用户应用,并高效检查其状态。
使用 bloc 状态管理库进行开发时的官方 lint 规则。
一个扩展了 bloc 状态管理库的插件,可自动持久化和恢复 bloc 状态。
代码生成工具,用于在 Flutter 和主机平台之间实现类型安全且更简单的通信。
用于启动 Android Intent 的 Flutter 插件。不支持 iOS。
一个用于编写与 build_runner 兼容的代码生成器的包。
Injectable 是一个方便的代码生成器,用于 get_it。它受到 Angular DI、Guice DI 和 inject.dart 的启发。
Injectable 是一个方便的代码生成器,用于 get_it。它受到 Angular DI、Guice DI 和 inject.dart 的启发。
将已构建的 widget 转换为骨架加载器,无需额外努力。
在 Flutter 中使用彩带动画,一个功能强大且易于使用的库,可展示令人惊叹的彩带效果。
使用 Material 3 Expressive 设计系统样式的刷新指示器
{"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.0以下为英文项目原文快照,最新内容请访问 GitHub。
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).