bloc_lint
bloc 상태 관리 라이브러리를 사용할 때 개발을 위한 공식 린트 규칙.
안드로이드 기기에서 실행 중인 서비스를 모니터링하세요. 깔끔하고 직관적인 인터페이스를 통해 시스템 및 사용자 앱을 쉽게 확인하고 상태를 효율적으로 점검할 수 있습니다.
bloc 상태 관리 라이브러리를 사용할 때 개발을 위한 공식 린트 규칙.
bloc 상태 관리 라이브러리의 확장으로, 상태를 자동으로 저장하고 복원합니다.
플러터와 호스트 플랫폼 간의 통신을 타입 안전하고 쉽게 만드는 코드 생성 도구입니다.
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).