Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to test app without pebble watch?

I have to add a feature for the Pebble smart watch in my android app. Is there any cloud or emulators available to test Pebble watch coding? How can I test my app without a Pebble watch ?

like image 696
Gayathiri Avatar asked Feb 21 '14 10:02

Gayathiri


3 Answers

This question is a bit old, and that's probably the reason why nobody answered with CloudPebble yet.

Since Jan. 24th 2015, CloudPebble includes an emulator that allows you to run your app pretty quickly in your browser. You have to login with your Pebble ids at https://cloudpebble.net/ide/ , import or create a new project, then you can go to Compilation > Emulator, then click "Install and run".

CloudPebble works for C SDK apps, Simply.js and Pebble.js apps too.

like image 131
David Stosik Avatar answered Oct 19 '22 21:10

David Stosik


Since the release of the developer preview of the SDK 3.0 and as an alternative to CloudPebble you can also install the Pebble emulator based on QEMU.

Follow this instructions for linux (Mac and Win also available).

Then after building your app you can install it in the emulator as follows:

pebble install --emulator basalt /[your project path]/build/[Your app name].pbw
like image 36
IsaacCisneros Avatar answered Oct 19 '22 21:10

IsaacCisneros


There's a very nice Pebble simulator at https://github.com/Helco/PebbleLocalSim It only seems to work with the C SDK, I can't find a way of running pebble.js javaScript, which is a shame.

like image 1
alan.raceQs Avatar answered Oct 19 '22 21:10

alan.raceQs