4

I'm following instructions found on this site to manually build my Tizen project: https://wiki.tizen.org/wiki/Manually_installing_apps

But when I try installing it I get this error: "## wrt-installer: EKknEHu6Xk installation has failed - installation or update not allowed; invalid mode"

Has anyone else run into similar problems?

Thanks

Darin Kolev
  • 3,401
  • 13
  • 31
  • 46
broody
  • 697
  • 1
  • 6
  • 17

4 Answers4

2

Do you have the time on the device / emulator up to date, because if there is a difference between the OS time that host the IDE and the device/emulator the widget install fails.

You might want to check other modes of deployment here: How do I deploy a Tizen application to the Tizen emulator?

Also if you manually build the .wgt package without the IDE there are severally things that could go wrong in config.xml file (and having a config.xml and an index.html is mandatory.) In this case you can include the config.xml here and eventually I can point you to what might have gone wrong.

Community
  • 1
  • 1
Eduard Florinescu
  • 16,747
  • 28
  • 113
  • 179
  • Personally I once tried installing my widget to a device that had time way behind using a fresh certificate. Certificate was so fresh that the Gear treated it as invalid because the current time on Gear was **before** issuing time of the certificate! Hope this case would help someone. – Konstantin Apr 16 '15 at 15:12
1

Tizen SDK provide command line tools for developer who like console rather than UI environment.

You can try this. Open your console.(In case of Ubuntu , Ctrl+Alt+t ) I suppose you already install Tizen SDK.

web-install -w hellotizen.wgt

Tizen SDK Help

I hope this could help you.

1

The easiest way is to use sdb tool from SDK (tizen-sdk/tools):

sdb install <full_package_file_path>

For example:

sdb install ~/workspace/myApp/myApp.wgt
Amarantine
  • 106
  • 2
1

There is difference between manually building and installing applications. To build the app you need to use your certificate - that is why there is SDK. To install app you can use SDK or command line. I am afraid that right now you are unable to build applications on your own, without signing the application.

Ender
  • 158
  • 1
  • 9