语言

Menu
Sites
Language
How to get the software version of the GearS2 device.

How to get the software(firmware) version of the GearS2 device??

What function(API) should I use ?

 

iwant_value = get_device_info_software_version(/*&iwant_value*/);

iwant_value => R73(2)0SKSUXXXXX

编辑者为: Seong Jun Bang 26 11月, 2015
查看选择的答案

响应

2 回复
Mark as answer
Jeongsu Kim

You can get it by system info api.

Please refer https://developer.tizen.org/dev-guide/2.3.1/org.tizen.native.wearable.apireference/group__CAPI__SYSTEM__SYSTEM__INFO__MODULE.html  and https://developer.tizen.org/ko/development/guides/native-application/system/system-information?langredirect=1#build

#include <system_info.h>

char* value = NULL;
system_info_get_platform_string("http://tizen.org/system/build.string", &value);

 

Seong Jun Bang

thanks to you. I can go home... ^^