I have an html5 app that runs fine on n9 when served from a web site.
How can I make that into an installable application that I can make available from the Nokia Store?
Printable View
I have an html5 app that runs fine on n9 when served from a web site.
How can I make that into an installable application that I can make available from the Nokia Store?
I spoke to one of our MeeGo experts who provided this link on how to create html5 code into something that is an app for the N9:
[url]http://harmattan-dev.nokia.com/docs/library/html/guide/html/Developer_Library_Essential_concepts_for_Harmattan_developers_Application_development_framework.html[/url]
This link provides the example on how to actually code it:
[url]http://harmattan-dev.nokia.com/docs/library/html/qt4/qtwebkit.html[/url]
This link provides the example on how to actually code it:
[url]http://harmattan-dev.nokia.com/docs/library/html/qt4/qtwebkit.html[/url]
QtWebKit allows you to develop modern HTML5 applications for Harmattan. QtWebKit is Nokia's version of the open source [URL="http://webkit.org/"]WebKit [/URL]layout engine, ported to Qt. It is used to render HTML content and execute JavaScript.
To develop Harmattan applications with QtWebKit, you can:
• Create a Qt Quick Components application and use the [URL="http://harmattan-dev.nokia.com/docs/library/html/qt4/qml-webview.html?tab=1"]QML WebView[/URL] element to show the actual web content.
• Create a C++ MeeGo Touch application and use the [URL="http://harmattan-dev.nokia.com/docs/library/html/qtwebkit/qgraphicswebview.html?tab=1"]QGraphicsWebView [/URL]class.
For more information, see [URL="http://harmattan-dev.nokia.com/docs/library/html/qt4/qtwebkit.html"]QtWebKit documentation[/URL] provided by Qt.
I hope this helps.