😙

Android StudioのEmulatorで不要なアプリを削除し容量を節約する

2024/11/26に公開

Android Emulator、重いですし、容量も食いますよね。。。ただ、いらないプリインストールアプリを削除すると、軽くできます!
怖いので実機では試したことがないですが、エミュレータPixel 6a API 34で確認済みです。

# Youtube
adb uninstall com.google.android.youtube
adb shell pm uninstall --user 0 com.google.android.youtube
# Youtube music
adb uninstall com.google.android.apps.youtube.music
adb shell pm uninstall --user 0 com.google.android.apps.youtube.music
# Google drive
adb shell pm uninstall --user 0 com.google.android.apps.docs
# Contacts
# adb shell pm uninstall --user 0 com.android.providers.contacts
# adb shell pm uninstall --user 0 com.android.providers.contacts.auto_generated_rro_product__
adb shell pm uninstall --user 0 com.google.android.contacts
# Message
adb shell pm uninstall --user 0 com.google.android.apps.messaging

ちなみに、コメントアウトしているcom.android.providers.contactsは連絡先・システムのユーザーを管理しているアプリ?でアンインストールすると以下の警告?が大量に出ます。今のところエミュレータとして使えてますが、うまくいかないことがあるので残しておいた方が良いです。=> com.androidで始まるものはシステム系っぽいので触らないほうが無難そうです

java.lang.SecurityException: Failed to find provider com.android.contacts for user 0; expected to find a valid ContentProvider for this authority

Discussion