Version: 5.4
Tizen 개발 시작(Getting Started with Tizen Development)
Tizen FAQ

Setting up Unity to Build to Your Tizen Device

Tizen 디바이스에서 프로젝트 작업을 진행하려면 다음 단계를 따라야 합니다.

  1. Install the Tizen SDK: Check the proper version of Tizen SDK depending on Samsung Z models from Samsung Developers site. http://developer.samsung.com/samsung-z Tizen SDK can be downloaded from the Tizen developer site. http://developer.tizen.org/downloads/tizen-sdk Instructions for installation can be found here: https://developer.tizen.org/downloads/sdk/installing-tizen-sdk

  2. Download and Install the Tizen Certificate Extension SDK: The Extension SDK can also be found on the Samsung Developers site from step 1. http://developer.samsung.com/samsung-z

Installation instructions are available here: http://developer.samsung.com/technical-doc/view.do?v=T000000198

  1. Enable USB debugging on your device:
    1. 디바이스를 시작합니다.

    2. 홈 화면에서 전화 앱을 실행합니다.

    3. *#84936#을 입력합니다. 숫자 84936은 TIZEN을 의미합니다.

    4. A menu will be displayed. 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. 설정 앱을 옆으로 밀어서 앱을 종료합니다.

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

    9. 설정 앱을 실행합니다.

    10. Scroll to the bottom and select Developer Options.

    11. Enable the USB debugging option.

  2. Create a signing certificate: Directions for creating a signing certificate can be found via the Tizen IDE. Open Help->Help Contents and click on the Certificates topic in the navigation pane on the left side.

  3. 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 the command must be run from within the directory of a Tizen IDE project. Launch the Tizen IDE and create a Tizen Native Application project. For this example we will call is TestApp.

    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"
    
  4. Launching your game: Use File->Build settings. Switch to the Tizen platform. Ensure that Development build is checked. Next click on Player Settings. 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”. Then click the Build and Run button. Unity will make the game for you, and deploy it to the device. The game should then start up on the device. You’ve now built and run your first game on your Tizen device.

Tizen 개발 시작(Getting Started with Tizen Development)
Tizen FAQ