Skip to content

Instantly share code, notes, and snippets.

@mattlogan
Created November 4, 2014 04:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattlogan/ef87017306a81f074d3e to your computer and use it in GitHub Desktop.
Save mattlogan/ef87017306a81f074d3e to your computer and use it in GitHub Desktop.
bash script to disable animations on an emulator
adb shell "
sqlite3 /data/data/com.android.providers.settings/databases/settings.db \"
update global set value='0.0' where name='window_animation_scale';
update global set value='0.0' where name='transition_animation_scale';
update global set value='0.0' where name='animator_duration_scale';
\"
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment