Version: 2017.2
Setting up to build a Tizen device
Tizen Player Settings

Tizen FAQ

Is the emulator supported?

No the Tizen emulator is not supported.

Obtaining Debug.Log output in realtime

Logs can be accessed in realtime while the game is running using the sdb tool.

./tizen-sdk/tools/sdb dlog Unity:*

我该怎么做才能延长电池续航时间?

如果不使用陀螺仪,请考虑使用以下语句将其关闭:

Input.gyro.enabled = false;

以上语句位于游戏启动代码中。

How can I manually deploy the TPK file to the device?

The TPK file is the executable that the Unity build system creates for you. You can use Build and Run to build the TPK, transfer to the device, and then launch it for you. If you do not want to use Build and Run from the editor, you can use build to make the TPK only. To transfer the TPK to the device you can use a command line tool called sdb. This tool can be found in the tools folder in your Tizen SDK installation. Use a command line such as:

./tizen-sdk/tools/sdb install YourUnitySignedApp.tpk

How can I place my completed Unity project for sale on the Tizen Store?

Full instructions can be found here.

Setting up to build a Tizen device
Tizen Player Settings