本文介绍了取消设置持久性系统属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以使用 setprop< key>在Android手机上设置持久性系统属性(具有适当的权限)。 < value> 命令:

$ adb shell setprop persist.this.is.my.property testing

然后我可以确认属性已设置:

I can then confirm that the property was set:

$ adb shell getprop persist.this.is.my.property
testing

但是既然设置好了,我现在就无法删除(因为在重启手机后,在键的开头一直存在)。没有unsetprop或rmprop或类似的东西。尝试将值设置为nil或null会将其设置为该值并将其保留为空会提示帮助说明。

But I can't remove the key now that it is set (because of the persist at the start of the key it is there after the phone reboots). There is no unsetprop or rmprop or anything similar. Attempting to set the value to nil or null sets that to the value and leaving it empty prompts the help instructions.

有人知道如何从命令中取消系统属性吗?设置后的线?

Does anyone know how to unset a system property from the command line after it has been set?

推荐答案

要删除该属性:

rm /data/property/persist.this.is.my.property && reboot

这篇关于取消设置持久性系统属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 05:08