Skip to content

Instantly share code, notes, and snippets.

@wsoyka
Last active September 4, 2024 10:13
Show Gist options
  • Save wsoyka/53396270cc9f57b599ae8634b47e12cf to your computer and use it in GitHub Desktop.
Save wsoyka/53396270cc9f57b599ae8634b47e12cf to your computer and use it in GitHub Desktop.
How to edit build.prop on Android

Since various build.prop editor apps didnt work for me on Lineage 17.x, here the way I managed to edit build.prop:

  1. via Termux/Terminal:
mount -o remount,rw /
nano /system/build.prop
  1. edit to your hearts content - I usually bring down media vol steps: ro.config.media_vol_steps=15

  2. mount -o remount,ro /

  3. Reboot device

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment