How to clear qmlviewer cache and cookies of WebView?
-
I don't think there is an easy way (maybe a good feature request for "http://bugreports.qt.nokia.com":http://bugreports.qt.nokia.com?)
The cache information is stored in two places, which you should be able to manually remove:
In the application settings; see the "QSettings doc":http://doc.qt.nokia.com/4.7-snapshot/qsettings.html#locations-where-application-settings-are-stored for where this ends up getting stored. (organization name "Nokia", organization domain "nokia.com, app name "QtQmlViewer")
In the tmp path (QDir::tempPath() + "/qml-viewer-network-cache").
The code for this is in tools/qml/qmlruntime.cpp if you want to dig further.
Regards,
Michael