Hi,
I built a tizen web application(wearable) on version 2.3
To run the application in background, i used the below setting in the config.xml
<tizen:setting background-support="enable" encryption="disable" hwkey-event="enable"/>
When i updated the tizen studio version to 2.5 , i found that we have to add an additional tag "<tizen:background-category>" value to config.xml to make it run in background. I added the below tag in config.xml
<tizen:background-category value="sensor"/>
But it shows an error "Invalid content was found starting with element 'tizen:background-category'"
How can i resolve this issue?