Skip to content

Instantly share code, notes, and snippets.

@gustavonovaes
Created January 31, 2022 12:58
Show Gist options
  • Save gustavonovaes/867f86e2a578f3a020e3ecfecf6bbfa5 to your computer and use it in GitHub Desktop.
Save gustavonovaes/867f86e2a578f3a020e3ecfecf6bbfa5 to your computer and use it in GitHub Desktop.
Desativar aplicativos inuteis do emulator
#!/bin/bash
#adb shell pm list packages | awk -F":" '{print $2}'
apps="com.android.chrome
com.google.android.apps.docs
com.google.android.apps.maps
com.google.android.apps.photos
com.google.android.calendar
com.google.android.feedback
com.google.android.googlequicksearchbox
com.google.android.music
com.google.android.videos
com.google.android.youtube
com.google.android.gm"
IFS=$'\n'
for i in $apps; do adb shell su root pm disable $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment