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

WBOY
Release: 2016-07-13 10:17:18
Original
1528 people have browsed it

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
Copy after login
Copy after login
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
Copy after login
Open another CMD, do not close the previous one, type in the new CMD

adb pull /system/build.prop D:/build.prop
Copy after login

Copy after login
Copy after login
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
Copy after login
Copy after login
Then save and encode as UTF-8, otherwise it will be garbled.


Type in CMD

adb push D:/build.prop /system/
Copy after login

Copy after login
Copy after login

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
Copy after login

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...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!