Legacy Documentation: Version 5.6 (Go to current version)
Getting Started with Tizen Development
Tizen FAQ
Other Versions

Setting up to build a Tizen device

To get your first project running on your Tizen device you will need to follow these steps.

  1. Install the Tizen SDK.
  2. Download and Install the Tizen Certificate Extension SDK:
    • The Extension SDK is on the Getting the Certificates section of the Samsung Developers site.
    • The installation instructions are on the Install section of the Samsung Developers site.
  3. Enable USB debugging on your device.
    1. Start up your device.

    2. Launch the Phone app from the home screen.

    3. Type *#84936# - The numbers 84936 spell out TIZEN.

    4. A menu displays. Tap the button on the right to enable Developer Option.

    5. Press the Home button to return to home screen.

    6. Press and hold the Home button to show recent apps.

    7. Swipe across on the Settings app to close it.

    8. Press the Home button to return to the home screen.

    9. Launch the Settings app.

    10. Scroll to the bottom and select Developer Options.

    11. Enable the USB debugging option.

  4. Create a signing certificate.
    • Find directions for creating a signing certificate via the Tizen IDE. Open menu: Help > Help Contents and click on the Certificates topic in the navigation pane on the left side.
  5. Set up the Tizen CLI environment.
    • Before you can deploy to a device, the Tizen Command Line Interface needs to know where the signing profiles configuration is located. You can run the following command in a terminal to set it up properly.

    Windows:

    C:\tizensdk-path\tools\ide\bin\tizen.bat cli-config "default.profiles.path=C:\workspace-path\.metadata\.plugins\org.tizen.common.sign\profiles.xml"
    

    OS X:

    /tizensdk-path/tools/ide/bin/tizen.sh cli-config default.profiles.path=/path/to/workspace/.metadata/.plugins/org.tizen.common.sign/profiles.xml
    

    In both cases you should replace workspace-path with the path to the Tizen IDE workspace that you created when you first launched the Tizen IDE and tizensdk-path with the full path to where your Tizen SDK is installed.

    Note On Windows, you must run the command must from within the directory of a Tizen IDE project. Launch the Tizen IDE and create a Tizen Native Application project.

    Example

    In the example below, TestApp is your project.

    If your workspace is at C:\workspace and the Tizen SDK is installed at C:\tizen-sdk, then open a command prompt and then run the following commands:

    cd C:\workspace\TestApp
        
    C:\tizen-sdk\tools\ide\bin\tizen.bat cli-config "default.profiles.path=C:\workspace\.metadata\.plugins\org.tizen.common.sign\profiles.xml"
    
  6. Launching your game.
    1. In the Unity Editor, go to File > Build settings….
    2. Switch to the Tizen platform.
    3. Ensure that Development build is checked.
    4. Next click on Player Settings.
    5. Under Publishing Setting enter the name of the signing profile that you created in the Tizen IDE. If you didn’t give it a custom name or rename it in the IDE, then you should enter “default”.
    6. Click the Build and Run button. Unity makes the game for you and deploys it to the device. The game then starts up on the device.
Getting Started with Tizen Development
Tizen FAQ