How to launch a native application on Tizen device boot up

Original Created Jun 10, 2016 | Regeneration Apr 22, 2026

I'm developing a native application for Tizen and need it to launch automatically when the device boots up. Could you please explain how to implement this functionality?

Problem Understanding

Launching an application automatically on device boot requires special privileges in Tizen. This functionality is typically restricted to platform-level applications or manufacturers due to security considerations.

Solution Methods

  1. Privilege Requirement:

    • Your application needs the "http://tizen.org/privilege/appmanager.launch" privilege
    • This privilege is categorized as a platform-level privilege, meaning it requires special approval
  2. Implementation Steps:

    • Add the required privilege to your tizen-manifest.xml file:
      <privileges>
          <privilege>http://tizen.org/privilege/appmanager.launch</privilege>
      </privileges>
      
    • Implement a service that listens for the boot completed event
    • Register your application as a boot-time service in the manifest
  3. Alternative Approach:

    • If you're developing for a specific device model, contact the manufacturer for possible implementation options
    • Consider using push notifications or scheduled alarms as alternative solutions

Additional Tips

  • Platform-level privileges require special signing certificates
  • Test your implementation thoroughly as boot-time behavior can vary between Tizen versions
  • For wearable devices, additional power management considerations may apply

Customize your cookie preferences

You can enable or disable non-essential cookies. Essential cookies are always on to ensure the site works properly and to keep you signed in.

Necessary

These cookies are necessary for the website to function properly and cannot be switched off. They help with things like logging in and setting your privacy preferences.

Always on

Analytics

These cookies help us improve the site by tracking which pages are most popular and how visitors move around the site.

Enable analytics cookies
Public Forum Public Forum
Employees only. Please sign in with your company account.