操作Android build.prop文件

时间:2013-07-08 20:06:57

标签: android build android-emulator system

我正在尝试操作Android API级别17 build.prop 文件,并对设备的MODEL,ID,FINGERPRINT值等进行一些更改。我操纵了 system.img 文件,当文件中的字符数在更改后仍然相同时,它可以正常工作,但是当我添加或多或少时它会崩溃。

Quiestion: Is there a way that the system.img file number of characters
is checked? How can I successfully manipulate build.prop file?
谢谢。

1 个答案:

答案 0 :(得分:3)

这是一个3岁的问题但仍在回答以后的人工检查 - 不确定为什么你不能从主机中的目标编辑中提取build.prop并推回到目标

adb root
adb remount
adb pull /system/build.prop
<Edit in host>
adb push build.prop /system/
adb shell sync
adb reboot