emulationtizensamsung-gear-fit

Emulator for Samsung Gear Fit 2 Tizen


I would like to develop a web application for Samsung Gear Fit 2 pro, but I have problems with getting an emulator to work. Do you know which emulator I should use? (None of them scale properly or are circular)


Solution

  • Till now there is no Emulator on Tizen Studio for Gear Fit series. But you may run your projects on Square Emulator in order to test Fit series projects. You can fix the resolution of your project from config.xml.

    As the resolution of Gear Fit 2 is 216 x 432, i am setting height and width accordingly.

    <?xml version="1.0" encoding="UTF-8"?>
    <widget xmlns:tizen="http://tizen.org/ns/widgets" height="432" width="216" xmlns="http://www.w3.org/ns/widgets" id="http://yourdomain/XXXX" version="1.0.0"  viewmodes="maximized">
       ........
        <tizen:setting screen-orientation="portrait" context-menu="disable" background-support="disable" encryption="disable" install-location="auto" hwkey-event="enable"/>
    </widget>
    

    And taking the emulator having resolution 320 x 320 as there are no other square emulator option on the Tizen Studio. Hopefully this technique will solve your problem.

    enter image description here