├── .github ├── ISSUE_TEMPLATE │ ├── report_vulnerability.yml │ ├── request_addition.yml │ └── request_change.yml └── workflows │ └── lint.yml ├── .gitignore ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── aosp.json ├── browser ├── .gitignore ├── README.md ├── book.toml └── custom.css ├── carrier.json ├── google.json ├── misc.json ├── oem.json ├── schema ├── bloatware_list.json └── suggestion_list.json ├── scripts ├── browser_generator.php ├── lint.php ├── publish_browser.sh ├── test.php └── update_uad.php └── suggestions ├── app_stores.json ├── audio_recorders.json ├── authenticators.json ├── automation_apps.json ├── backup_apps.json ├── barcode_scanners.json ├── battery_managers.json ├── browsers.json ├── calculators.json ├── calendars.json ├── call_recorders.json ├── cameras.json ├── cleaners.json ├── clocks.json ├── cloud_services.json ├── contacts.json ├── dialers.json ├── dictionaries.json ├── ebook_readers.json ├── email_clients.json ├── file_managers.json ├── fitness_trackers.json ├── gallery.json ├── instant_messaging_apps.json ├── keyboards.json ├── launchers.json ├── locators.json ├── maps.json ├── meeting_apps.json ├── music_apps.json ├── note_taking_apps.json ├── password_managers.json ├── podcasts.json ├── radios.json ├── rss_readers.json ├── sandboxing_apps.json ├── screen_recorders.json ├── sharing_apps.json ├── sms.json ├── streaming_apps.json ├── task_managers.json ├── translators.json ├── tts.json ├── video_players.json ├── vpn_services.json ├── weather_apps.json └── webviews.json /.github/ISSUE_TEMPLATE/report_vulnerability.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/.github/ISSUE_TEMPLATE/report_vulnerability.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request_addition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/.github/ISSUE_TEMPLATE/request_addition.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request_change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/.github/ISSUE_TEMPLATE/request_change.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | build/ 4 | browser/src 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/README.md -------------------------------------------------------------------------------- /aosp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/aosp.json -------------------------------------------------------------------------------- /browser/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/browser/README.md -------------------------------------------------------------------------------- /browser/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/browser/book.toml -------------------------------------------------------------------------------- /browser/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/browser/custom.css -------------------------------------------------------------------------------- /carrier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/carrier.json -------------------------------------------------------------------------------- /google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/google.json -------------------------------------------------------------------------------- /misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/misc.json -------------------------------------------------------------------------------- /oem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/oem.json -------------------------------------------------------------------------------- /schema/bloatware_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/schema/bloatware_list.json -------------------------------------------------------------------------------- /schema/suggestion_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/schema/suggestion_list.json -------------------------------------------------------------------------------- /scripts/browser_generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/scripts/browser_generator.php -------------------------------------------------------------------------------- /scripts/lint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/scripts/lint.php -------------------------------------------------------------------------------- /scripts/publish_browser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/scripts/publish_browser.sh -------------------------------------------------------------------------------- /scripts/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/scripts/test.php -------------------------------------------------------------------------------- /scripts/update_uad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/scripts/update_uad.php -------------------------------------------------------------------------------- /suggestions/app_stores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/app_stores.json -------------------------------------------------------------------------------- /suggestions/audio_recorders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/audio_recorders.json -------------------------------------------------------------------------------- /suggestions/authenticators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/authenticators.json -------------------------------------------------------------------------------- /suggestions/automation_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/automation_apps.json -------------------------------------------------------------------------------- /suggestions/backup_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/backup_apps.json -------------------------------------------------------------------------------- /suggestions/barcode_scanners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/barcode_scanners.json -------------------------------------------------------------------------------- /suggestions/battery_managers.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/browsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/browsers.json -------------------------------------------------------------------------------- /suggestions/calculators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/calculators.json -------------------------------------------------------------------------------- /suggestions/calendars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/calendars.json -------------------------------------------------------------------------------- /suggestions/call_recorders.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/cameras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/cameras.json -------------------------------------------------------------------------------- /suggestions/cleaners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/cleaners.json -------------------------------------------------------------------------------- /suggestions/clocks.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/cloud_services.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/contacts.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/dialers.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/dictionaries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/dictionaries.json -------------------------------------------------------------------------------- /suggestions/ebook_readers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/ebook_readers.json -------------------------------------------------------------------------------- /suggestions/email_clients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/email_clients.json -------------------------------------------------------------------------------- /suggestions/file_managers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/file_managers.json -------------------------------------------------------------------------------- /suggestions/fitness_trackers.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/gallery.json -------------------------------------------------------------------------------- /suggestions/instant_messaging_apps.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/keyboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/keyboards.json -------------------------------------------------------------------------------- /suggestions/launchers.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/locators.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/maps.json -------------------------------------------------------------------------------- /suggestions/meeting_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/meeting_apps.json -------------------------------------------------------------------------------- /suggestions/music_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/music_apps.json -------------------------------------------------------------------------------- /suggestions/note_taking_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/note_taking_apps.json -------------------------------------------------------------------------------- /suggestions/password_managers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/password_managers.json -------------------------------------------------------------------------------- /suggestions/podcasts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/podcasts.json -------------------------------------------------------------------------------- /suggestions/radios.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /suggestions/rss_readers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/rss_readers.json -------------------------------------------------------------------------------- /suggestions/sandboxing_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/sandboxing_apps.json -------------------------------------------------------------------------------- /suggestions/screen_recorders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/screen_recorders.json -------------------------------------------------------------------------------- /suggestions/sharing_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/sharing_apps.json -------------------------------------------------------------------------------- /suggestions/sms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/sms.json -------------------------------------------------------------------------------- /suggestions/streaming_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/streaming_apps.json -------------------------------------------------------------------------------- /suggestions/task_managers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/task_managers.json -------------------------------------------------------------------------------- /suggestions/translators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/translators.json -------------------------------------------------------------------------------- /suggestions/tts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/tts.json -------------------------------------------------------------------------------- /suggestions/video_players.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/video_players.json -------------------------------------------------------------------------------- /suggestions/vpn_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/vpn_services.json -------------------------------------------------------------------------------- /suggestions/weather_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuntashirAkon/android-debloat-list/HEAD/suggestions/weather_apps.json -------------------------------------------------------------------------------- /suggestions/webviews.json: -------------------------------------------------------------------------------- 1 | [] --------------------------------------------------------------------------------