Last active
December 8, 2022 22:40
-
-
Save mugifly/71fe92b769412ef2739a14d28c37043f to your computer and use it in GitHub Desktop.
Disable the animation of Android Virtual Device using adb command
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
# For Android JellyBean and newer device | |
adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="window_animation_scale"' | |
adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="transition_animation_scale"' | |
adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="animator_duration_scale"' | |
# For Android ICS and older device | |
adb shell "echo \"update system set value=0.0 where name='window_animation_scale';\" | sqlite3 /data/data/com.android.providers.settings/databases/settings.db" | |
adb shell "echo \"update system set value=0.0 where name='transition_animation_scale';\" | sqlite3 /data/data/com.android.providers.settings/databases/settings.db" |
I see the same thing
Same here
You can run this commands instead:
adb shell settings put global window_animation_scale 0.0
adb shell settings put global transition_animation_scale 0.0
adb shell settings put global animator_duration_scale 0.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Are you seeing the following?