Created
January 31, 2022 12:58
-
-
Save gustavonovaes/867f86e2a578f3a020e3ecfecf6bbfa5 to your computer and use it in GitHub Desktop.
Desativar aplicativos inuteis do emulator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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