I have an app in Tizen, and I would like to run it at the watch's boot up. Here is how my app.js
looks like:
$(document).ready(function() {
document.addEventListener('tizenhwkey', function(e) {
if(e.keyName == "back") {
tizen.application.getCurrentApplication().exit();
}
});
// The rest of the program
}
Now, I can see that a Service Application can be executed at the start up, and here explains what are the necessary steps to build a Service Application. However, I was not able to relate these topics to my application. If I want to have my application started at the boot up, do I need to change it to a Service Application? What are the changes I need to do?