Languages

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

Edited by: Seong Jun Bang on 26 Nov, 2015
View Selected Answer

Responses

2 Replies
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... ^^