bloc_lint
bloc 状態管理ライブラリを使用する際の開発用公式lintルール。
Androidデバイス上で実行中のサービスをモニタリングします。洗練された直感的なインターフェースで、システムアプリおよびユーザーアプリを簡単に表示し、その状態を効率的に確認できます。
bloc 状態管理ライブラリを使用する際の開発用公式lintルール。
bloc 状態管理ライブラリの拡張で、状態を自動的に永続化および復元します。
Flutter とホストプラットフォーム間の通信を型安全かつ簡単にするためのコードジェネレーターツール。
Android Intents を起動するための Flutter プラグイン。iOS ではサポートされていません。
build_runner 互換のコードジェネレーターを作成するためのパッケージ。
Injectable は get_it 用の便利なコードジェネレーターです。Angular DI、Guice DI、inject.dart からインスパイアされています。
Injectable は get_it 用の便利なコードジェネレーターです。Angular DI、Guice DI、inject.dart からインスパイアされています。
既に構築されたウィジェットを、追加の努力なしにスケルトンローダーに変換します。
FlutterにおけるConfettiアニメーション、素晴らしいConfetti効果を表示するための強力で使いやすいライブラリです。
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).