deploy android application on to real device
I want to deploy my android application on to real mobile de开发者_Go百科vice by using netbeans how can i do it.
I don't know how you would do with NetBeans, since I guess NetBeans doesn't have adb integration and you have to do all the things with console (I don't know exactly)
But you can do it with:
$./adb install -d <path_to_ur_app.apk>
Tell me, have you configured your device USB drivers (If on Windows) on your system?
Which OS you're on?
For anyone who is reading this old question - there is Netbeans plugin with quite nice ADB integration: http://kenai.com/projects/nbandroid
I highly recommend to use Eclipse IDE because Google provides a plugin for developing and deploying your apps from within the IDE.
Just follow these steps and you can't run into any trouble ;)
Or is there any special reason why you prefer Netbeans for mobile development?
精彩评论