自Android L NDK起,__system_property_get
被删除(https://groups.google.com/a/chromium.org/forum/#!topic/chromium-reviews/keQP6L9aVyU)。 Android L NDK中是否有另一个API可以访问相同的属性值?
答案 0 :(得分:6)
我在https://stackoverflow.com/a/478960/2833126的答案中详细说明popen
以运行getprop
。像
std::string command = "getprop ro.product.model";
FILE* file = popen(command.c_str(), "r");
if (!file) {
// error
}
// read the property value from file
pclose(file);