Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

OS Simulator current clock or App

ANSWERED

Is it possible to know which of the various installed Clocks or Apps in the OS Simulator is the currently loaded one?

Author | ch, passion for improvement.

Best Answer
0 Votes
1 BEST ANSWER

Accepted Solutions

Thanks to the suggestion posted by @Gondwana  elsewhere,

 

It is possible to know which watch is loaded in the OS Simulator, its stored in the file DeviceType and the history in main.log

 

A batch file on the PC can be used:

 

Which_watch.bat

@echo The simulator is using watch type
 
@type "C:\Users\%username%\AppData\Roaming\Fitbit OS Simulator\user-settings\DeviceType"

@echo.
@echo Higgs = Ionic
@echo Meson = Versa
@echo Gemini = Versa Lite
@echo Mira = Versa 2
@echo Atlas = Versa 3
@echo Vulcan = Sense
@echo.

pause

 

Simulator_history.bat

@echo The history of Clocks/Apps loaded with UUID and BuildID

 

cd C:\Users\%username%\AppData\Roaming\Fitbit OS Simulator\logs

find "No bundles for UUID:" main.log


pause

Author | ch, passion for improvement.

View best answer in original post

Best Answer
1 REPLY 1

Thanks to the suggestion posted by @Gondwana  elsewhere,

 

It is possible to know which watch is loaded in the OS Simulator, its stored in the file DeviceType and the history in main.log

 

A batch file on the PC can be used:

 

Which_watch.bat

@echo The simulator is using watch type
 
@type "C:\Users\%username%\AppData\Roaming\Fitbit OS Simulator\user-settings\DeviceType"

@echo.
@echo Higgs = Ionic
@echo Meson = Versa
@echo Gemini = Versa Lite
@echo Mira = Versa 2
@echo Atlas = Versa 3
@echo Vulcan = Sense
@echo.

pause

 

Simulator_history.bat

@echo The history of Clocks/Apps loaded with UUID and BuildID

 

cd C:\Users\%username%\AppData\Roaming\Fitbit OS Simulator\logs

find "No bundles for UUID:" main.log


pause

Author | ch, passion for improvement.

Best Answer