Change DPI in Build.Prop, not booting...balls

Search This thread

arr0ww

Senior Member
Jul 19, 2010
141
27
Vancouver, BC
So I changed the DPI to 400 in build.prop via Root Explorer. Now I get the google screen but when it's supposed go to the "decrypt" phone screen it's just black.

I can get into Recovery, can I use ADB to pull/push a new build.prop?
 
Last edited:

Alex240188

Senior Member
May 4, 2010
1,131
739
Hull
Boot into recovery.
Code:
adb shell mount /system
adb pull /system/build.prop

Edit the file with a Unix compatible editor like notepad++ (not notepad)
Change the DPI back to normal and save

Code:
adb push build.prop /system/
adb shell chmod 644 /system/build.prop

Reboot and all should be well

Sent from my Nexus 5 using xda app-developers app
 
  • Like
Reactions: xBeerdroiDx

arr0ww

Senior Member
Jul 19, 2010
141
27
Vancouver, BC
How can I get ABD to see it? keeps saying device not found, on both a mac and windows 8.1 machine.

EDIT: I got impatient and just reflashed the stock 4.4.2, all good now.
 
Last edited:

Top Liked Posts

  • There are no posts matching your filters.
  • 1
    Boot into recovery.
    Code:
    adb shell mount /system
    adb pull /system/build.prop

    Edit the file with a Unix compatible editor like notepad++ (not notepad)
    Change the DPI back to normal and save

    Code:
    adb push build.prop /system/
    adb shell chmod 644 /system/build.prop

    Reboot and all should be well

    Sent from my Nexus 5 using xda app-developers app