Languages

Menu
Sites
Language
How to get feature keys for system Information?

안녕하세요.

System Information 값들을 확인하기 위해 tizen IDE 의 Help contents를 찾아보면,

System info key 에 대해 camera, fm radio , graphics 등 여러 카테고리가 있더라구요.

근데 그 항목을 누르면 화면이 지원되지 않아 하위에 어떤 피쳐가 지원되는지 나오고 있지 않네요.

좀더 정확한 진입경로로는,

 

API References-> Native Application -> Mobile Native API Reference ->System -> System Information

"The keys for the platform functions are specified by the Tizen platform and can be seen here."

 

에서 here를 누르면 진입되는 화면입니다.

System Information 탭에서 지원가능한 각 모듈별 key값들을 알려면 어디를 봐야 할까요?

도움 부탁드립니다.

제 IDE 버전은 아래와 같습니다.

이상입니다.

 

 

Tizen SDK

Version : 2.3.1
Build id : 20150721-1441

Responses

2 Replies
daniel kim

안녕하세요.

 

아래와 같은 code로 key값을 읽어올수가 있습니다.

 

#include <stdbool.h>

void func(void)
{
   bool value;
   int ret;

   ret = system_info_get_platform_bool("tizen.org/feature/camera", &value);
   if (ret != SYSTEM_INFO_ERROR_NONE)
   {
      // Error handling
      return;
   }

   dlog_print(DLOG_INFO, LOG_TAG, "Camera: %s", value ? "Supported" : "Not supported");
}

 

Help에서 아래 page를 참조하시면 될 것 같습니다.


  Tutorials--> native application --> System

Jeongsu Kim

위 Developer -> API Reference ->  이후 말씀하신 경로로 따라가면 나옵니다.

https://developer.tizen.org/dev-guide/2.3.1/org.tizen.guides/html/native/system/sysinfo_n.htm