I am currently developing an application for a SmartTV using the Tizen SDK, and when I try to run my application without internet access I get the following error:
> You're not connected to the internet. This feature requires internet access WAS0003
My simple **config.xml** has the following code:
<?xml version="1.0" encoding="UTF-8"?> <widget xmlns:tizen="http://tizen.org/ns/widgets" xmlns="http://www.w3.org/ns/widgets" id="http://sssss" version="1.0.0" viewmodes="maximized"> <tizen:application id="srJXNxHxpd.Basicapplication" package="srJXNxHxpd" required_version="2.4"/> <content src="index.html"/> <icon src="icon.png"/> <name>xxx</name> <tizen:profile name="tv"/> <tizen:setting screen-orientation="portrait" context-menu="enable" background-support="disable" encryption="disable" install-location="auto" hwkey-event="enable"/> </widget>
Thanks in advance,