如何获取 Samsung Gear S3 智能手表的信息(型号、序列号...)?

How to get information(Model, Serial, ...) of Samsung Gear S3 smartwatch?

我正在尝试在 Gear S3 上的 tizen 应用程序 运行 中获取信息(型号、序列号...)。在手表上,可以找到此信息 - 设置 -> 齿轮信息 -> 关于设备

是否有任何方法或API可以在 tizen 应用程序中获取值?

Tizen'SystemInfo' API 提供这样的系统 Information.You 可以查看 SystemInfo Web API 文档:

SystemInfo API: Tip&Tech

SystemInfo Web API Guide

SystemInfo Web API References

这是获取型号和软件版本的示例代码。您可以在 API 参考资料中查看您要查找的特定属性(仅当它们可用时)。

 function onSuccessCallbackBuild(info) {
         alert("Model:" + info.model+ "\n"+"Manufacture:"+ info.manufacturer+ "\n"+"Build:"+ info.buildVersion);
     }

 function onErrorCallback(error) {
         alert("Not supported: " + error.message);
     }

 tizen.systeminfo.getPropertyValue("BUILD", onSuccessCallbackBuild, onErrorCallback);

系统信息也有 Tizen 本机 API。如果您要使用 Tizen Native 应用程序,可以看看。

SystemInfo Native API Guide

SystemInfo Native API References