Deploy Android app on real device

I want to deploy an android application on a real mobile device using netbeans, how can I do this.

+4
source share
3 answers

I do not know how you will do with NetBeans, since I believe that NetBeans does not have integration with adb, and you need to do everything with the console (I donโ€™t know for sure)

But you can do it with

$./adb install -d <path_to_ur_app.apk> 

Tell me, have you configured the USB devices of your device (if on Windows) on your system?

What OS are you on?

+4
source

For those reading this old question - there is a Netbeans plugin with pretty nice ADB integration: http://kenai.com/projects/nbandroid

+2
source

I highly recommend using the Eclipse IDE because Google provides a plugin for developing and deploying your applications from the IDE.

Just follow these steps and you cannot run into any problem;)

Or is there some special reason why you prefer Netbeans for mobile development?

0
source

Source: https://habr.com/ru/post/1338213/


All Articles