在Android L NDK中替换`__system_property_get`

时间:2014-11-03 19:55:15

标签: android-ndk-r5

自Android L NDK起,__system_property_get被删除(https://groups.google.com/a/chromium.org/forum/#!topic/chromium-reviews/keQP6L9aVyU)。 Android L NDK中是否有另一个API可以访问相同的属性值?

1 个答案:

答案 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);