Hi,
That what i've read in the book TZEN for dummies, page 68:
Using the Tizen APIs
Because this application is using Tizen APIs to get information from the device, the following privileges are registered in the config.xml file:
<tizen:privilege
name=”http://tizen.org/privilege/application.read”/>
<tizen:privilege name=”http://tizen.org/privilege/systeminfo”/>
When these features are registered, the application can immediately access the functionality provided by the Application
and Systeminfo objects. So for example, to retrieve the current battery level on the device, the following code is used:
tizen.systeminfo.getPropertyValue(“BATTERY”,
onBatterySucess, onError);
I've opened config .js but didn't find in privileges application.read or privilege/systeminfo. But the program work. Maybe the book is for an older version?