Home  >  Article  >  Backend Development  >  Modify Android device information, such as changing the phone model to iPhone7 Gold Rich Edition! _PHP Tutorial

Modify Android device information, such as changing the phone model to iPhone7 Gold Rich Edition! _PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 10:17:181500browse

Modify Android device information, such as changing the phone model to iPhone7 Gold Rich Edition!

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=apple
Then 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 /system
Open another CMD, do not close the previous one, type in the new CMD

adb pull /system/build.prop D:/build.prop


Then 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=apple
Then 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. . . Modify Android device information, such as changing the phone model to iPhone7 Gold Rich Edition! _PHP Tutorial

So you still need to enter

in the original CMD window

#chmod 755 /system/build.prop

chmod 777 is useless, must be 755


Restart your phone and you will see the gorgeous iphone7. You can also make other modifications with similar operations





www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/894185.htmlTechArticleModify the Android device information, such as changing the phone model to iPhone7 Gold Rich Edition! First of all, your phone must have ROOT permissions. Misoperation may be risky, so please be cautious. Please enable USB debugging on your phone first...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn