Skip to content

Instantly share code, notes, and snippets.

@wsoyka
Last active December 14, 2024 18:20
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

@megvadulthangya
Copy link

Does not work in Android x86 9.0r2 nano says build prop is unwritable :( any idea?

@wsoyka
Copy link
Author

wsoyka commented Dec 14, 2024

Editing build.props got more and more painful over the android versions - I'm no longer doing it myself.
But, from what I recall, on android 9, setting props with whatever build.prop editor app worked fine for me.

If it doesnt for you - a quick search implies magisk resetprop to be the go-to solution nowadays, maybe that'll help.

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