4

I've followed the instructions here: BB10 Cascades Command Line Development

Now I've got a makefile project, which can compile and deploy my application to a connected device. The only problem is, I can't start the application remotely. I've created a special test version, which simply runs an automated test and then quits, so the next logical step would be starting the application, and waiting for it to exit (it would be great if I could monitor stdout and stderr) or kill it if it takes too long.

What I'm trying to accomplish (to avoid the xy problem) is the integration with a Jenkins server we already use for other platforms. E.g.: on Android we use robotium to achieve the same degree of integration.

4

1 回答 1

5

blackberry-nativepackager 允许您启动类似于 androids adb 的应用程序。

就这样称呼吧

blackberry-nativepackager -launchApp <path to bar file> -device <devices ip address> -password <your pwd>
于 2013-05-07T16:31:48.230 回答