universal-android-debloater/lists/AOSP.sh

369 lines
14 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2020-01-10 03:23:21 +13:00
2020-06-23 04:39:09 +12:00
declare -a aosp=(
2020-01-10 10:20:05 +13:00
"com.android.apps.tag"
# NFC Tagging (5 permissions : Contacts/Phone On by default).
# https://en.wikipedia.org/wiki/TecTile
# It will NOT prevent you to use NFC devices (like speakers)
"com.android.bips"
# Default print Service.
# Safe to remove if you don't plan to print from your phone.
"com.android.bluetoothmidiservice"
# Provides classes for using the MIDI protocol over Bluetooth. Safe to remove if you don't plan to connect MIDI devices.
# (Seriously, use a PC if you want to do this !)
"com.android.bookmarkprovider"
# Only exist for compatibility reasons to prevent apps querying it from getting null cursors they do not expect and crash.
"com.android.carrierdefaultapp"
# Allows carrier customization. Carrier action upon specific signal.
"com.android.dreams.basic"
# Daydream (not Google Daydream VR) is an interactive screensaver mode built into Android.
# When you dock your Android phone or tablet or charge it, its screen normally stays off.
# When you enable Daydream mode, the devices screen will stay on and display the Daydream app you choose.
# You can use this to display the time, weather, quotes, photos, news, tweets, or anything else that developers write a Daydream app for.
# https://developer.android.com/reference/android/service/dreams/DreamService
"com.android.dreams.phototable"
# Photographic screensavers (Daydream stuff, see above)
"com.android.egg"
# Android build's easter egg feature (when you click 5 times on the android version in the settings)
2020-06-23 04:39:09 +12:00
"com.android.galaxy4"
# built-in Dynamic wallpaper
2020-01-10 10:20:05 +13:00
"com.android.htmlviewer"
# In-built HTML viewer. Basically lets you read HTML files stored on your device.
# REMINDER : A web-browser can also read HTML files...
"com.android.magicsmoke"
# "Magic smoke" Live wallpaper.
"com.android.managedprovisioning"
# Manage separate profile on devices. The typical example is setting up a corporate profile that is controlled by their employer on a
# users personal device to keep personal and work data separate.
2020-06-23 04:39:09 +12:00
# https://support.google.com/work/android/answer/6191949?
# https://developers.google.com/android/work/requirements/work-profile
2020-01-10 10:20:05 +13:00
2020-06-16 01:05:46 +12:00
"com.android.musicvis"
# Music Visualization Wallpapers
2020-01-10 10:20:05 +13:00
"com.android.noisefield"
# "Noise filed" live wallpaper.
"com.android.phasebeam"
# "Phase beam" live wallpaper
"com.android.printservice.recommendation"
# Keep it, if you need to print directly via your phone.
"com.android.printspooler"
# Print spooler. Manage the printing process.
# Safe to remove if you don't plan to print from your phone
"com.android.providers.partnerbookmarks"
# Provides bookmarks about partners of Google in Chrome.
"com.android.simappdialog"
# Sim App Dialog
# Used to install the carrier SIM app when the SIM is inserted.
2020-01-10 10:20:05 +13:00
"com.android.soundrecorder"
2020-06-23 04:39:09 +12:00
# AOSP Sound recorder. OEM often use their own solution
# There are better apps (on F-droid) anyway
2020-01-10 10:20:05 +13:00
"com.android.stk"
"com.android.stk2" # (special package for dual-sim devices?)
# SIM toolkit
2020-01-10 10:20:05 +13:00
# SIM toolkit app. Enable carriers to make SIM cards initiate "value-added services" (== some crappy stuff)
# Basically, Some operators give SIMs which has applications installed in it.
# https://en.wikipedia.org/wiki/SIM_Application_Toolkit#cite_note-CellularZA-1
# Has already be abused :
# - SimJacker : https://thehackernews.com/2019/09/simjacker-mobile-hacking.html
# - WIBattack : https://www.zdnet.com/article/new-sim-card-attack-disclosed-similar-to-simjacker/
2020-06-23 04:39:09 +12:00
"com.android.traceur"
# System Tracing
# Recording device activity over a short period of time is known as system tracing. System tracing produces a trace file that can be used to generate
# a system report.
# Not useful if you're not a developer.
2020-01-10 10:20:05 +13:00
"com.android.wallpaper.holospiral"
# "Holo spiral" Live wallpaper.
"com.android.wallpaper.livepicker"
# Enable you to pick live wallpaper.
"com.android.wallpapercropper"
# Wallpaper cropper.
"com.example.android.notepad"
# (Bad) notepad app.
##################### UP TO YOU (can be useful features but safe to remove) #####################
2020-01-11 03:32:28 +13:00
#"com.android.backupconfirm"
2020-01-10 10:20:05 +13:00
# Restore google settings with Google Backup restore function.
# Also display confirmation popup when doing ADB backup. If you remove this package you couldn't do ADB Backup.
#"com.android.bio.face.service"
# Handles facial regognition.
2020-01-11 03:32:28 +13:00
#"com.android.bluetooth"
2020-01-10 10:20:05 +13:00
# Bluetooth service
"com.android.browser"
2020-06-23 04:39:09 +12:00
# AOSP Browser. You honeslty shoud use something else. It is no longer maintained and lack a lot of features.
# If you have this package you most likely have an old android version (< Android KitKat v4.4) so you can't really install
# another browser.
# Your android device is insecure so you really shouldn't use this device to browse the web.
2020-01-10 10:20:05 +13:00
"com.android.browser.provider"
2020-06-23 04:39:09 +12:00
# Strange package. It is old (2014) and there is a hardcoded Picasa URL in the code
2020-01-10 10:20:05 +13:00
# https://android.googlesource.com/platform/packages/apps/Browser/+/refs/heads/master/src/com/android/browser/provider/BrowserProvider.java
# Related to bookmarks but removing it doesn't seems to affect anything visible.
"com.android.calendar"
# Old AOSP Calendar app
2020-01-10 10:20:05 +13:00
2020-01-11 03:32:28 +13:00
#"com.android.calculator2"
2020-01-10 10:20:05 +13:00
# Stock calculator app.
2020-01-10 03:23:21 +13:00
"com.android.calllogbackup"
2020-06-23 04:39:09 +12:00
# Call Logs Backup/Restore feature.
2020-01-10 10:20:05 +13:00
2020-01-11 03:32:28 +13:00
#"com.android.captiveportallogin"
2020-01-10 10:20:05 +13:00
# Take care of redirecting to the web page that the user of a public access network is obliged to view and interect with, before access is granted.
2020-06-23 04:39:09 +12:00
#"com.android.carrierconfig"
# Gives carriers and OEMs the ability to dynamically provide carrier configuration (APN settings) trough their app.
# NOTE : The probability that your carrier's APN change is very low. If you change your carrier and insert a new SIM card
# This package will be triggered to automatically choose the suitable APN.
# https://source.android.com/devices/tech/config/carrier
2020-01-25 08:49:39 +13:00
#"com.android.cellbroadcastreceiver"
2020-01-10 10:20:05 +13:00
# == EMERGENCY ALERTS ==
# This service manages enabling and disabling ranges of message identifiers that the radio should listen for.
# It operates independently of the other services and runs at boot time and after exiting airplane mode.
# https://www.androidcentral.com/amber-alerts-and-android-what-you-need-know
2020-01-11 03:32:28 +13:00
#"com.android.contacts"
2020-06-23 04:39:09 +12:00
# AOSP contacts app (it is not Google contacts)
2020-01-10 10:20:05 +13:00
2020-06-23 04:39:09 +12:00
#"com.android.cts.ctsshim" # [MORE INFO NEEDED]
2020-01-11 03:32:28 +13:00
#"com.android.cts.priv.ctsshim"
2020-01-10 10:20:05 +13:00
# Compatibilty Test Service. The CTS shim is a package that resides on a device's /system partition in order
2020-06-23 04:39:09 +12:00
# to verify certain upgrade scenarios. Could mess up witch OTA updates.
2020-01-10 10:20:05 +13:00
# https://android.googlesource.com/platform/frameworks/base/+/51e458e/packages/CtsShim
#"com.android.deskclock"
2020-06-23 04:39:09 +12:00
# AOSP Clock app
2020-01-10 10:20:05 +13:00
"com.android.email"
# AOSP Email app (it is NOT gmail).
2020-01-10 03:23:21 +13:00
2020-01-10 10:20:05 +13:00
"com.android.emergency"
# Emergency informations. Safe to remove if you don't want this feature.
2020-06-23 04:39:09 +12:00
#"com.android.exchange" # [MORE INFO NEEDED]
2020-01-10 10:20:05 +13:00
# The ExchangeService handles all aspects of starting, maintaining, and stopping the various sync adapters for email.
2020-06-23 04:39:09 +12:00
# [WARNING] I need to know if it only concerns stock mail app.
2020-01-10 10:20:05 +13:00
2020-01-11 03:32:28 +13:00
#"com.android.facelock"
2020-01-10 10:20:05 +13:00
# Essential if you wanna use Face Unlock features, removable if you don't want to.
"com.android.gallery3d"
# AOSP Gallery app.
2020-06-23 04:39:09 +12:00
#"com.android.inputdevices"
# Only contains a receiver named "Android keyboard", possibly for an external keyboard.
# Locates available keyboard layouts.
2020-06-23 04:39:09 +12:00
# An application can offer additional keyboard layouts to the user by declaring a suitable broadcast receiver in its manifest.
2020-01-10 10:20:05 +13:00
#"com.android.inputmethod.latin"
# AOSP keyboard. (This is not Google Keyboard).
2020-01-25 08:49:39 +13:00
#"com.android.internal.display.cutout.emulation.corner"
#"com.android.internal.display.cutout.emulation.double"
#"com.android.internal.display.cutout.emulation.noCutout"
#"com.android.internal.display.cutout.emulation.tall"
# Support for display cutouts
# https://developer.android.com/guide/topics/display-cutout
# https://source.android.com/devices/tech/display/display-cutouts
2020-06-23 04:39:09 +12:00
#"com.android.keychain"
2020-01-10 10:20:05 +13:00
# Enable apps to use system wide credential KeyChain (shared credentials between apps)
# https://security.stackexchange.com/questions/216716/android-keychain-what-is-a-system-wide-credential
2020-06-16 01:05:46 +12:00
#"com.android.musicfx"
# Audio equalizer. Some 3-party music apps can use it to provide you equalizing features.
2020-01-10 10:20:05 +13:00
#"com.android.mms"
2020-06-23 04:39:09 +12:00
# AOSP SMS app.
2020-01-10 10:20:05 +13:00
#"com.android.nfc"
# NFC service
2020-06-23 04:39:09 +12:00
#"com.android.pacprocessor"
2020-01-10 10:20:05 +13:00
# A PAC (Proxy Auto-Config) is a file which defines how an app can automatically define the correct proxy server for fetching an URL.
# Should be safe to remove if you don't use Auto-proxy (with PAC file config)
# https://en.wikipedia.org/wiki/Proxy_auto-config
#"com.android.phone.recorder"
2020-06-23 04:39:09 +12:00
# AOSP Call recorder function. Most of the time OEM use their own code for this.
2020-01-10 10:20:05 +13:00
2020-01-11 03:32:28 +13:00
#"com.android.providers.blockednumber"
# Handles blocked numbers storage
# On some devices this packages seems to be tied to recent apps menu (see https://gitlab.com/W1nst0n/universal-android-debloater/-/issues/6)
2020-01-10 10:20:05 +13:00
2020-06-16 01:05:46 +12:00
#"com.android.providers.calendar"
# Necessary to sync stock Calendar app and lets it work correctly.
2020-01-10 10:20:05 +13:00
2020-06-23 04:39:09 +12:00
#"com.android.providers.drm" # [MORE INFO NEEDED]
2020-06-16 01:05:46 +12:00
# DRM Protected Content Storage
# Provides DRM functions to stop you from copying things like ringtones, live wallpapers, etc.
# May be needed to access media files (to be verified)
2020-01-11 03:32:28 +13:00
#"com.android.providers.userdictionary"
# Handles user dictionary for keyboard apps.
2020-01-10 10:20:05 +13:00
2020-01-11 03:32:28 +13:00
#"com.android.proxyhandler"
2020-06-23 04:39:09 +12:00
# Handles proxy config
2020-01-10 10:20:05 +13:00
# Safe to remove if you don't use a proxy.
"com.android.quicksearchbox"
# Google quick search box.
2020-01-25 08:49:39 +13:00
#"com.android.settings.intelligence" # [MORE INFO NEEDED]
# Settings tips in Settings menu ?
# I don't have this in my phone. It for Android Pie. Can someone check ?
2020-06-16 01:05:46 +12:00
#"com.android.sharedstoragebackup"
2020-01-10 10:20:05 +13:00
# Used during backup. Fetch shared storage (files accessible by every apps with STORAGE permission)
2020-06-23 04:39:09 +12:00
# Things have changed with Android 10. Don't know if this package is still relevant for new phones.
2020-01-10 10:20:05 +13:00
# https://blog.mindorks.com/understanding-the-scoped-storage-in-android.
2020-01-25 08:49:39 +13:00
#"com.android.systemui.theme.dark"
2020-06-23 04:39:09 +12:00
# Enables you to use Android dark theme.
2020-01-25 08:49:39 +13:00
2020-06-16 01:05:46 +12:00
#"com.android.timezone.updater"
2020-01-25 08:49:39 +13:00
# Time Zone Updater
# Automatically updates the clock to correspond to your current time zone
2020-01-25 08:49:39 +13:00
2020-06-23 04:39:09 +12:00
#"com.android.voicedialer"
# AOSP Voice dialer. Let's you call someone or open an app with your voice from the dialer.
# OEM often use their own code (embeded in their voice-controlled digital assistant)
2020-01-10 10:20:05 +13:00
2020-06-16 01:05:46 +12:00
#"com.android.wallpaperbackup"
2020-01-10 10:20:05 +13:00
# Backup your wallapaper and load this backup instead of the original file in case you delete it.
2020-06-16 01:05:46 +12:00
# Safe to remove if you really want to.
2020-01-10 03:23:21 +13:00
2020-06-23 04:39:09 +12:00
#"org.simalliance.openmobileapi.service"
# Smart Card Service by Simalliance
# https://simalliance.org/about-us/mission-objectives/
#
# The SmartCard API is a reference implementation of the SIMalliance Open Mobile API specification that enables Android applications
# to communicate with Secure Elements, (SIM card, embedded Secure Elements, Mobile Security Card or others)
# https://github.com/seek-for-android/pool/wiki/SmartcardAPI
# Safe to remove if you don't think you need this
2020-01-10 03:23:21 +13:00
)
2020-01-10 10:20:05 +13:00
##################### DO NOT REMOVE THIS (will prevent core stuff to work) #####################
2020-01-10 10:20:05 +13:00
#"com.android.certinstaller"
2020-06-16 01:05:46 +12:00
# Certificate installer. Identifies your device and confirms that it should be able to access something.
2020-01-10 10:20:05 +13:00
# Here it is used for accepting and revoking of Internet certificates. Break wifi if removed.
#"com.android.companiondevicemanager"
2020-01-10 10:20:05 +13:00
# Companion Device Manager that comes by default in every Oreo+ device.
# This handles connections to other devices, like Bluetooth Headphones, desktop Operative Systems, ecc.
#"com.android.defcontainer"
# Package Access Helper
# Determine the recommended install location for packages and if there is enough free space for the package.
2020-01-10 10:20:05 +13:00
#"com.android.documentsui" # Files picker
2020-01-10 10:20:05 +13:00
# Interface for apps wishing to access access files outside of their own storage area.
#"com.android.externalstorage"
2020-01-10 10:20:05 +13:00
# Needed by apps to access external storage (SD card)
#"com.android.location.fused"
2020-01-10 10:20:05 +13:00
# Manages the underlying location technologies, such as GPS and Wi-Fi.
#"com.android.mms.service"
2020-01-10 10:20:05 +13:00
# Provides support for sending MMS.
#"com.android.mtp"
# MTP Host
# Handles MTP (protocol allowing files to be transferred to and from your PC)
2020-01-10 10:20:05 +13:00
2020-06-16 01:05:46 +12:00
#"com.android.packageinstaller"
# Handles installation, upgrade, and removal of applications.
#"com.android.provision"
# Application that sets the provisioned bit, like SetupWizard does.
# Add a persistent setting to allow other apps to know the device has been provisioned.
#"com.android.phone"
2020-01-10 10:20:05 +13:00
# AOSP code for dialer app features
# SIM card will also not be detected if deleted.
2020-06-16 01:05:46 +12:00
#"com.android.providers.applications"
# Fetches the list of applications installed on the phone to provide search suggestions.
#"com.android.providers.contacts"
2020-01-10 10:20:05 +13:00
# Handle interaction with contacts data
#"com.android.providers.downloads"
2020-01-10 10:20:05 +13:00
# Provider for downloads manager.
#"com.android.providers.downloads.ui"
2020-01-10 10:20:05 +13:00
# User interface for listing downloads.
#"com.android.providers.media"
2020-01-10 10:20:05 +13:00
# Handle access to media files.
#"com.android.providers.settings"
# Handles settings app datas (contentProvider)
2020-01-10 10:20:05 +13:00
# https://android.stackexchange.com/questions/37195/why-are-there-two-settings-apps-settings-and-settings-storage
#"com.android.providers.telephony"
2020-01-10 10:20:05 +13:00
# [AOSP] Telephony provider. Handle access to telephony database.
#"com.android.server.telecom"
2020-01-10 10:20:05 +13:00
# Management your calls via your network provider or SIM and controls the phone modem.
#"com.android.settings"
2020-01-10 10:20:05 +13:00
# AOSP Settings app features
#"com.android.shell"
2020-01-10 10:20:05 +13:00
# Unix shell to communicate via ADB commands through PC.
#"com.android.statementservice"
2020-01-10 10:20:05 +13:00
# Intent Filter Verification Service
# Intent : https://developer.android.com/reference/android/content/Intent
# Intent Filters : https://developer.android.com/guide/components/intents-filters
# https://android.stackexchange.com/questions/191163/what-does-the-intent-filter-verification-service-app-from-google-do
#"com.android.storagemanager"
2020-01-10 10:20:05 +13:00
# Storage manager (Maintenance/Storage panel in the settings)
# Clean up unused files, show size of files regrouped by categories...
#"com.android.systemui"
2020-01-10 10:20:05 +13:00
# Everything you see in Android that's not an app. User interface of Android
#"com.android.vpndialogs"
2020-06-16 01:05:46 +12:00
# Provide VPN support to Android
2020-01-10 10:20:05 +13:00
# https://en.wikipedia.org/wiki/Dialog_(software)
# Safe to remove if you don't plan to use a VPN.