├── .agent └── rules │ └── rules.md ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle.kts │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── me │ │ │ │ └── biplobsd │ │ │ │ └── rsm │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── android12splash.png │ │ │ └── splash.png │ │ │ ├── drawable-mdpi │ │ │ ├── android12splash.png │ │ │ └── splash.png │ │ │ ├── drawable-night-hdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-mdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xxhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xxxhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── android12splash.png │ │ │ └── splash.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── android12splash.png │ │ │ └── splash.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── android12splash.png │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-ldpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle.kts ├── build │ └── reports │ │ └── problems │ │ └── problems-report.html ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle.kts ├── assets ├── icon.png ├── logo.png └── splash.png ├── devtools_options.yaml ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 3.txt │ └── 4.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg │ ├── short_description.txt │ └── title.txt ├── flutter_launcher_icons.yaml ├── flutter_native_splash.yaml ├── l10n.yaml ├── lib ├── bloc │ ├── home_bloc │ │ ├── home_bloc.dart │ │ ├── home_bloc.freezed.dart │ │ ├── home_event.dart │ │ └── home_state.dart │ ├── language_bloc │ │ ├── language_bloc.dart │ │ ├── language_bloc.freezed.dart │ │ ├── language_event.dart │ │ └── language_state.dart │ └── stop_service_bloc │ │ ├── stop_service_bloc.dart │ │ ├── stop_service_bloc.freezed.dart │ │ ├── stop_service_event.dart │ │ └── stop_service_state.dart ├── core │ ├── constants.dart │ ├── dependency_injection │ │ ├── dependency_injection.config.dart │ │ └── dependency_injection.dart │ ├── extensions.dart │ ├── routing │ │ └── app_router.dart │ ├── theme │ │ └── theme_bloc.dart │ └── utils │ │ └── android_settings_helper.dart ├── l10n │ ├── app_bn.arb │ ├── app_en.arb │ ├── app_localizations.dart │ ├── app_localizations_bn.dart │ ├── app_localizations_en.dart │ └── untranslated.json ├── main.dart ├── models │ ├── home_state_model.dart │ ├── home_state_model.freezed.dart │ ├── process_state_filter.dart │ ├── service_info.dart │ └── service_info.freezed.dart ├── screens │ ├── about_screen.dart │ ├── app_details_screen.dart │ ├── home_screen.dart │ └── widgets │ │ ├── about_button.dart │ │ ├── about_header.dart │ │ ├── about_info_tile.dart │ │ ├── app_details_description.dart │ │ ├── app_details_section_title.dart │ │ ├── app_header.dart │ │ ├── app_icon.dart │ │ ├── app_list.dart │ │ ├── app_list_item.dart │ │ ├── app_logo.dart │ │ ├── custom_scroll_provider.dart │ │ ├── default_service_icon.dart │ │ ├── dismissible_app_list_item.dart │ │ ├── empty_list_state.dart │ │ ├── error_state.dart │ │ ├── filter_chip_widget.dart │ │ ├── home_body.dart │ │ ├── language_selector.dart │ │ ├── loading_state.dart │ │ ├── process_filter_chips.dart │ │ ├── ram_bar.dart │ │ ├── ram_info_dialog.dart │ │ ├── ram_legend_item.dart │ │ ├── search_field.dart │ │ ├── service_detail_row.dart │ │ ├── service_details_dialog.dart │ │ ├── service_icon.dart │ │ ├── service_list.dart │ │ ├── service_list_item.dart │ │ ├── setup_step_item.dart │ │ ├── shizuku_permission_dialog.dart │ │ ├── sliver_header_delegates.dart │ │ └── theme_toggle_button.dart ├── services │ ├── app_info_service.dart │ ├── process_service.dart │ └── shizuku_service.dart └── utils │ └── format_utils.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── dark_home.jpg ├── details.jpg ├── home.jpg ├── search.jpg └── service_details.jpg └── test └── widget_test.dart /.agent/rules/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/.agent/rules/rules.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/me/biplobsd/rsm/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/kotlin/me/biplobsd/rsm/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-night-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-night-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-night-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/build/reports/problems/problems-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/build/reports/problems/problems-report.html -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/assets/splash.png -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/devtools_options.yaml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/changelogs/4.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Running Services Monitor 2 | -------------------------------------------------------------------------------- /flutter_launcher_icons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/flutter_launcher_icons.yaml -------------------------------------------------------------------------------- /flutter_native_splash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/flutter_native_splash.yaml -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/bloc/home_bloc/home_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/home_bloc/home_bloc.dart -------------------------------------------------------------------------------- /lib/bloc/home_bloc/home_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/home_bloc/home_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/bloc/home_bloc/home_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/home_bloc/home_event.dart -------------------------------------------------------------------------------- /lib/bloc/home_bloc/home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/home_bloc/home_state.dart -------------------------------------------------------------------------------- /lib/bloc/language_bloc/language_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/language_bloc/language_bloc.dart -------------------------------------------------------------------------------- /lib/bloc/language_bloc/language_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/language_bloc/language_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/bloc/language_bloc/language_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/language_bloc/language_event.dart -------------------------------------------------------------------------------- /lib/bloc/language_bloc/language_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/language_bloc/language_state.dart -------------------------------------------------------------------------------- /lib/bloc/stop_service_bloc/stop_service_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/stop_service_bloc/stop_service_bloc.dart -------------------------------------------------------------------------------- /lib/bloc/stop_service_bloc/stop_service_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/stop_service_bloc/stop_service_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/bloc/stop_service_bloc/stop_service_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/stop_service_bloc/stop_service_event.dart -------------------------------------------------------------------------------- /lib/bloc/stop_service_bloc/stop_service_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/bloc/stop_service_bloc/stop_service_state.dart -------------------------------------------------------------------------------- /lib/core/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/core/constants.dart -------------------------------------------------------------------------------- /lib/core/dependency_injection/dependency_injection.config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/core/dependency_injection/dependency_injection.config.dart -------------------------------------------------------------------------------- /lib/core/dependency_injection/dependency_injection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/core/dependency_injection/dependency_injection.dart -------------------------------------------------------------------------------- /lib/core/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/core/extensions.dart -------------------------------------------------------------------------------- /lib/core/routing/app_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/core/routing/app_router.dart -------------------------------------------------------------------------------- /lib/core/theme/theme_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/core/theme/theme_bloc.dart -------------------------------------------------------------------------------- /lib/core/utils/android_settings_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/core/utils/android_settings_helper.dart -------------------------------------------------------------------------------- /lib/l10n/app_bn.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/l10n/app_bn.arb -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/l10n/app_localizations.dart -------------------------------------------------------------------------------- /lib/l10n/app_localizations_bn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/l10n/app_localizations_bn.dart -------------------------------------------------------------------------------- /lib/l10n/app_localizations_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/l10n/app_localizations_en.dart -------------------------------------------------------------------------------- /lib/l10n/untranslated.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/home_state_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/models/home_state_model.dart -------------------------------------------------------------------------------- /lib/models/home_state_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/models/home_state_model.freezed.dart -------------------------------------------------------------------------------- /lib/models/process_state_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/models/process_state_filter.dart -------------------------------------------------------------------------------- /lib/models/service_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/models/service_info.dart -------------------------------------------------------------------------------- /lib/models/service_info.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/models/service_info.freezed.dart -------------------------------------------------------------------------------- /lib/screens/about_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/about_screen.dart -------------------------------------------------------------------------------- /lib/screens/app_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/app_details_screen.dart -------------------------------------------------------------------------------- /lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/screens/widgets/about_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/about_button.dart -------------------------------------------------------------------------------- /lib/screens/widgets/about_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/about_header.dart -------------------------------------------------------------------------------- /lib/screens/widgets/about_info_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/about_info_tile.dart -------------------------------------------------------------------------------- /lib/screens/widgets/app_details_description.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/app_details_description.dart -------------------------------------------------------------------------------- /lib/screens/widgets/app_details_section_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/app_details_section_title.dart -------------------------------------------------------------------------------- /lib/screens/widgets/app_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/app_header.dart -------------------------------------------------------------------------------- /lib/screens/widgets/app_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/app_icon.dart -------------------------------------------------------------------------------- /lib/screens/widgets/app_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/app_list.dart -------------------------------------------------------------------------------- /lib/screens/widgets/app_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/app_list_item.dart -------------------------------------------------------------------------------- /lib/screens/widgets/app_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/app_logo.dart -------------------------------------------------------------------------------- /lib/screens/widgets/custom_scroll_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/custom_scroll_provider.dart -------------------------------------------------------------------------------- /lib/screens/widgets/default_service_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/default_service_icon.dart -------------------------------------------------------------------------------- /lib/screens/widgets/dismissible_app_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/dismissible_app_list_item.dart -------------------------------------------------------------------------------- /lib/screens/widgets/empty_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/empty_list_state.dart -------------------------------------------------------------------------------- /lib/screens/widgets/error_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/error_state.dart -------------------------------------------------------------------------------- /lib/screens/widgets/filter_chip_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/filter_chip_widget.dart -------------------------------------------------------------------------------- /lib/screens/widgets/home_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/home_body.dart -------------------------------------------------------------------------------- /lib/screens/widgets/language_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/language_selector.dart -------------------------------------------------------------------------------- /lib/screens/widgets/loading_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/loading_state.dart -------------------------------------------------------------------------------- /lib/screens/widgets/process_filter_chips.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/process_filter_chips.dart -------------------------------------------------------------------------------- /lib/screens/widgets/ram_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/ram_bar.dart -------------------------------------------------------------------------------- /lib/screens/widgets/ram_info_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/ram_info_dialog.dart -------------------------------------------------------------------------------- /lib/screens/widgets/ram_legend_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/ram_legend_item.dart -------------------------------------------------------------------------------- /lib/screens/widgets/search_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/search_field.dart -------------------------------------------------------------------------------- /lib/screens/widgets/service_detail_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/service_detail_row.dart -------------------------------------------------------------------------------- /lib/screens/widgets/service_details_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/service_details_dialog.dart -------------------------------------------------------------------------------- /lib/screens/widgets/service_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/service_icon.dart -------------------------------------------------------------------------------- /lib/screens/widgets/service_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/service_list.dart -------------------------------------------------------------------------------- /lib/screens/widgets/service_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/service_list_item.dart -------------------------------------------------------------------------------- /lib/screens/widgets/setup_step_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/setup_step_item.dart -------------------------------------------------------------------------------- /lib/screens/widgets/shizuku_permission_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/shizuku_permission_dialog.dart -------------------------------------------------------------------------------- /lib/screens/widgets/sliver_header_delegates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/sliver_header_delegates.dart -------------------------------------------------------------------------------- /lib/screens/widgets/theme_toggle_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/screens/widgets/theme_toggle_button.dart -------------------------------------------------------------------------------- /lib/services/app_info_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/services/app_info_service.dart -------------------------------------------------------------------------------- /lib/services/process_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/services/process_service.dart -------------------------------------------------------------------------------- /lib/services/shizuku_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/services/shizuku_service.dart -------------------------------------------------------------------------------- /lib/utils/format_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/lib/utils/format_utils.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/dark_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/screenshots/dark_home.jpg -------------------------------------------------------------------------------- /screenshots/details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/screenshots/details.jpg -------------------------------------------------------------------------------- /screenshots/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/screenshots/home.jpg -------------------------------------------------------------------------------- /screenshots/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/screenshots/search.jpg -------------------------------------------------------------------------------- /screenshots/service_details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/screenshots/service_details.jpg -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biplobsd/running_services_monitor/HEAD/test/widget_test.dart --------------------------------------------------------------------------------