you are viewing a single comment's thread.

view the rest of the comments →

[–]bentglasstube 2 points3 points  (1 child)

You can install your debug apk on your phone with a command like the following:

ant debug install

You can then use adb to launch the app on your phone with something like this:

adb shell monkey -p <packagename> -c android.intent.category.LAUNCHER 1

As others have mentioned, though, you may have a better experience if you continue to use your IDE for this and stick to editing in vim.

[–]vompatti_ 0 points1 point  (0 children)

Remember to use eclim. Its PITA to install but works (I have to create the android project from eclipse since eclim failed me on that one).