Languages

Menu
Sites
Language
Cannot upload widget to Tizen Seller Office

When uploading the binary (.wgt) to the Tizen Seller Office I get a warning that the screen size is not specified:

"If no screen size is specified in binary file, display devices cannot be recommended. Make sure that you have specified the screen size to display an application in IDE."

However, I added width and height in the config.htm file under the Widget section so I do not understand what is the problem.

Does anyone know the solution to this problem?

Thank you.

Responses

3 Replies
Marco Buettner

add

http://tizen.org/feature/screen.size.normal

to your config.xml on the feature-tab :) and try it again

If you want to support only 720x1280 or only 480x800 devices you can use

http://tizen.org/feature/screen.size.normal.480.800
or
http://tizen.org/feature/screen.size.normal.720.1280

My apps got approved today:

It really drove me nuts to get the same HTLM code approved which runs perfectly for all other platforms.

The Tizen App Checker was very helpful for me, even if it does not support 2.2 (only 2.1):

https://source.tizen.org/compliance/application-compatibility/web-application-checker-user-guide

Take care, support the back-button to pass validation:

See https://developer.tizen.org/forums/web-application-development/tizen-2.2b-hardware-buttons for details.

 

    ...
    <feature name="http://tizen.org/feature/screen.size.normal"/>
    ...
    <tizen:setting screen-orientation="portrait" context-menu="disable" background-support="disable" encryption="disable" install-location="auto" hwkey-event="enable"/>
    ...

... these config.xml lines might be needed by you