Home > Article > Backend Development > Modify Android device information, such as changing the phone model to iPhone7 Gold Rich Edition! _PHP Tutorial
First of all, your phone must have ROOT permissions. Misoperation may be risky, so be careful
Please enable USB debugging on your phone first to prevent the phone from being unable to start after being modified
1. If you are making modifications on your mobile phone, use the RE file manager directly, edit the /system/build.prop file and find
ro.product.model=k333
ro.product.brand=ss
changed to
ro.product.model=iphone7黄金土豪版 ro.product.brand=appleThen save and restart your phone.
2. If you want to modify it on the computer
Open CMD and enter
adb shell #su #mount -o rw,remount yassf2 /system/ #chmod 777 /systemOpen another CMD, do not close the previous one, type in the new CMD
adb pull /system/build.prop D:/build.propThen go to the D drive to find this file and open it for editing
Found
ro.product.model=k333ro.product.brand=ss
changed to
ro.product.model=iphone7黄金土豪版 ro.product.brand=appleThen save and encode as UTF-8, otherwise it will be garbled.
Type in CMD
adb push D:/build.prop /system/
At this time, the files on the phone have been replaced, and authorization permission is required. Otherwise, when the phone is restarted and entered into the system, it will stay on the LOGO page. This is what I tried. . .
So you still need to enter
in the original CMD window#chmod 755 /system/build.prop
Restart your phone and you will see the gorgeous iphone7. You can also make other modifications with similar operations