如何修改build.prop文件使之生效

有一些调试开关需要我们修改build.prop文件重启才能生效,下面的流程就是如何修改build.prop文件。

在build.prop文件中加入新的调试开关(调试sensor相关)
adb root 
adb wait-for-device 
adb remount 
adb pull /system/build.prop . 
vi build.prop 

 
persist.vendor.debug.sensors.hal=1 
persist.debug.sensors.hal=1 
debug.qualcomm.sns.daemon=1 
debug.vendor.sns.daemon=1 
debug.qualcomm.sns.libsensor1=1 
debug.vendor.sns.libsensor1=1 
 

adb push build.prop /system 
adb shell chmod 644 /system/build.prop 
adb shell sync 
adb reboot 

 

 

 

你可能感兴趣的:(Andoid系统常用修改)