This refers to those properties that can be viewed in the About tab (model, manufacturer, and so on).
1 answer
<cutils/properties.h>
header and work with the properties of a couple of functions
int property_get(const char *key, char *value, const char *default_value); int property_set(const char *key, const char *value);
If these functions are not available in the NDK, then you can access properties from Java.
|