1

I'm trying to install an application in a Samsung Gear Fit2 using Tizen Studio 1.2 But every time I try to do so, I get the following error:

[Initializing the launch environment...]
    RDS: On
    Target information: SM-R360
    Application information: Id(PSOUXHWdyQ.TAUBasic), Package Name(PSOUXHWdyQ), Project Name(TAUBasic)
[Transferring the package...]
    Transferred the package: wgt stream -> /opt/usr/apps/tmp/TAUBasic.wgt
[Installing the package...]
path is /opt/usr/apps/tmp/TAUBasic.wgt
start process (install)
....
error : 76

end process (fail)
processing result : SIGNATURE_INVALID_CERT_TIME [76] failed
spend time for pkgcmd is [1664]ms
cmd_ret:76
    An exception occurred
(Installing the package... > Fail)
An exception occurred
Unexpected stop progress...
(4.998 sec)

I have searched everywhere and followed the steps on the links below:

Tizen Studio install error SIGNATURE_INVALID_CERT_TIME error 76

https://developer.tizen.org/forums/general-support/gear-fit2-problem-signature_invalid_cert_time#comment-25819

https://developer.tizen.org/sites/default/files/documentation/1_tizen_studio_windows.pdf

But none of them have solved this problem.

Notes:

  1. Both my development machine and smartwatch are on the same network.
  2. Both devices date/time are synced
  3. I'm using a Samsung certificate with a matching DUID from the device i'm trying to connect to.

Does anyone know what i'm missing?

4

2 回答 2

0

如果您转到存储作者和分发者证书的目录,并使用 openssl 将它们打印出来:

openssl x509 -text -noout <author.crt

您将看到两个证书字段:“Not Before”和“Not After”。它定义了证书有效的时间范围。

     Not Before: Jun 24 16:24:11 2018 GMT
     Not After : Jun 24 16:24:11 2019 GMT

如果手表上的计时器不同步并且日期/时间不在此时间间隔内,则目标设备(手表)上的证书验证将失败。

这就是为什么将手表与其手机同步将解决 CERT_TIME (76) 错误。

于 2018-12-20T23:09:18.503 回答
0

我终于能够在设备上安装一个应用程序。这是一个相当长的镜头,但它奏效了!

我只是用三星设备设置设备,就是这样!我在没有连接智能手机的情况下使用智能手表,因为我们正在开发一个独立的应用程序。

我想这与智能手表和智能手机之间的自动日期/时间(时区?)同步有关。不太确定。

无论如何,它现在正在工作!

于 2017-09-21T20:07:15.367 回答