Hello,
I have this Code
window.onload = function() {
var currentApp = tizen.application.getCurrentApplication();
if (currentApp) {
console.log(currentApp);
currentApp.addEventListener(‘launched‘, function() {
console.log(‚Die Anwendung wurde gestartet.‘);
});
}
};
<tizen:privilege name=“Tizen Privilege | Tizen”/>
the privileges are added before the feature
elements
And get this exception:
WebAPIException
code 17
TypeMismatchError
Cannot convert launched to dictionary
Any Ideas to fix this problem?
Thanks