Search found 13 matches
- 23:50, 24 Feb 2016
- Forum: General discussion
- Topic: Running app that was built in the Evothings Workbench(ETW)
- Replies: 1
- Views: 34574
Re: Running app that was built in the Evothings Workbench(ETW)
The typical approach is to run it in the viewer during development, and then, when the app is reaching the point where you want to put it on Appstore/playstore - you can build your own "combined" app. We have instructions on all of this: https://evothings.com/doc/build/build-overview.html ...
- 20:38, 23 Feb 2016
- Forum: General discussion
- Topic: Startup - Problem running Hello World app
- Replies: 3
- Views: 44507
Re: Startup - Problem running Hello World app
Hi!
Interesting, well, the steps you outline sounds perfectly correct so in my mind it should work. Perhaps you could chat with us at gitter.im/evothings/evothings ? Then we could try to figure it out.
regards, Göran
Interesting, well, the steps you outline sounds perfectly correct so in my mind it should work. Perhaps you could chat with us at gitter.im/evothings/evothings ? Then we could try to figure it out.
regards, Göran
- 09:15, 16 Feb 2016
- Forum: Questions and answers
- Topic: How to Disconnect ? from bluemix MQTT in tutorial ?
- Replies: 4
- Views: 33120
Re: How to Disconnect ? from bluemix MQTT in tutorial ?
The Paho client has disconnect() so you can easily expose that function in our "app": app.disconnect = function() { app.client.disconnect(); console.log("Disconnected "); } Reference docs for the Paho js library is here: http://www.eclipse.org/paho/files/jsdoc/symbols/Paho.MQTT.C...
- 23:09, 04 Feb 2016
- Forum: Questions and answers
- Topic: File names too long
- Replies: 8
- Views: 53474
Re: File names too long
Yes, I looked into this issue in december:
https://github.com/evothings/evothings- ... issues/139
...and for some reason we missed integrating the flattening in our build script.
regards, Göran
https://github.com/evothings/evothings- ... issues/139
...and for some reason we missed integrating the flattening in our build script.
regards, Göran
- 23:03, 28 Jan 2016
- Forum: Questions and answers
- Topic: Cloud and Auth
- Replies: 7
- Views: 48191
Re: Cloud and Auth
Just a small note, the MQTT example there is outdated, instead look at my article with the updated code:
https://evothings.com/evothings-does-mqtt-with-bluemix/
In general we are moving forward on the backend side of things now.
https://evothings.com/evothings-does-mqtt-with-bluemix/
In general we are moving forward on the backend side of things now.
- 12:37, 27 Jan 2016
- Forum: Questions and answers
- Topic: Unable to generate Key.
- Replies: 2
- Views: 23150
Re: Unable to generate Key.
Hi! The Workbench uses websockets to communicate with our "proxy" (not to be confused with your proxy server) which is what we call our cloud infrastructure. Generally proxy servers may have issues handling websockets, does this work for you: https://websocketstest.com ...if that works the...
- 14:09, 19 Jan 2016
- Forum: Showcase
- Topic: typescript definitions + concept2
- Replies: 2
- Views: 39392
Re: typescript definitions + concept2
Cool! We should collect links to these things in our github wiki. I will do that.
- 22:49, 13 Jan 2016
- Forum: Questions and answers
- Topic: Cordova. Failing building app on jenkins
- Replies: 2
- Views: 22411
Re: Cordova. Failing building app on jenkins
Just a "shot from the hip" - shouldn't you use export for those env vars? Try adding export in front of both lines so its: export ANDROID_HOME=/opt/android/android-sdk-linux export PATH=$PATH;$ANDROID_HOME/tools;$ANDROID_HOME/platform-tools;$ANDROID_HOME/build-tools/23.0.2 regards, Göran
- 09:33, 07 Jan 2016
- Forum: Questions and answers
- Topic: BLE Example and iOS
- Replies: 6
- Views: 45432
Re: BLE Example and iOS
Also, the Bluetooth section in Settings only shows some kind of Bluetooth subset (mine doesn't show anything right now and Andreas' phone here only shows three devices, neither being a BLE device). Some advice: - Install Lighblue Explorer to verify you can see BLE devices. - Install "iBeacon Sc...
- 09:20, 07 Jan 2016
- Forum: Questions and answers
- Topic: BLE Example and iOS
- Replies: 6
- Views: 45432
Re: BLE Example and iOS
Just ran some tests here at the office - on an Iphone 5s, latest update 9.2 (13C75). Ran BLE Scan straight from Examples tab and i see lots of BLE devices (our office is full of them): Kontakt, estimote etc. Also tried on my Xiaomi Mi3 (Android 4.4) and I see the same list of devices. I am now upgra...