So, the short answer is that Ripple is not compatible with the beta version of WebWorks 2.x.
If you just use the packaging and deployment features that you intend to use, I would recommend just using the CLI (command line interface).
While the CLI is generally scary and unintuitive, I can assure you that the new WW 2.x CLI is very simple. I used to use Ripple for packaging and deployment until I started working with this new CLI. Now this is the whole team, all the time for me.
Here's the easiest way to make it work, this is also what I do. Additional information is also available here https://github.com/apache/cordova-blackberry/tree/master/blackberry10
- Put your device in development mode
- Connect it to Mac via USB
Open a terminal and enter the following:
Create a new project: "webworks create / Users / Chad / testapp com.chadsapps.testapp" This will create a hello world sample application, right out of the box
Change the directory to the project: "cd / Users / Chad / testapp"
Deploy the application on the device: "webworks run" If there is no debugging token on your device, it will automatically detect it via USB and create it. You will be asked to enter your Keystore password at the invitation.
You should now have the hello world app on your device!
If you are looking for a part of Ripple emulation / testing, you will have to use simulators instead (for WebWorks 2.0), which is available at https://developer.blackberry.com/html5/downloads/
Hope this helps, if not, please feel free to ask;)
-Chad @chadtatro
source share