Developing Android Apps with NetBeans, Maven, and VirtualBox
I am an experienced Java developer who has used various IDEs and prefer NetBeans IDE over all others by a long shot. I am also very fond of Maven as the tool to simplify and automate nearly every aspect of the development of my Java project throughout its lifecycle.
Recently, I started developing Android applications and naturally I looked for a Maven plugin that would manage my Android projects. Luckily I found the maven-android-plugin which worked like a charm and allowed me to use Maven for developing my Android projects.
The Android Emulator from the Android SDK seemed unusably slow. Lucklily, I found a way to use an Android Virtual Machine for VirtualBox that worked nearly as fast as my native computer! This page documents my experiences.
Tested Environment
- Dev machine: Ubuntu 11.04 Linux
- IDE: NetBeans
- VirtualBox: 4.0.8 r71778
- Android SDK Revision 11, Add on XML Schema #1, Repository XML Schema #3 (from About in SDK and AVD Manager)
- Android Version: 2.2
Overview of Steps
- Download and install the Android SDK on your dev machine
- Attach an Android Device to dev machine
- Configure and load your device for development and other use
- Create an initial Android maven project
- Connect Android Device to Android SDK
- Debug Android app using NetBeans Graphical Debuger
Download and Install Android SDK
- Download and install the Android SDK on your dev machine as described here.
- Make sure to set the following in dev machine ~/.bashrc file:
export ANDROID_HOME=$HOME/android-sdk-linux_x86 #Change as needed
export PATH="$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$PATH"
Attaching an Android Device to Dev Machine
If you have an actual device that is usually always best. If not, you must use a virtual Android device which usually has various limitations (e.g. no GPS, Camera etc.). The Android SDK makes it easy to create a new Virtual Device but the resulting device is painfully slow in my experience and not usable. Do not bother with this. Instead, create a virtual Android device using VirtualBox as described in the following steps:
- Install virtual box and initial Android VM as described here:
http://androidspin.com/2011/01/24/howto-install-android-x86-2-2-in-virtualbox/
http://geeknizer.com/how-to-run-google-android-in-virtualbox-vmware-on-netbooks/ - Configure Android VM so it is connected bidirectionally with your dev machine over TCP as described here:
http://stackoverflow.com/questions/61156/virtualbox-host-guest-network-setup
I used the approach of configuring a HOST ONLY network adapater and a second NAT adapter on the Android VM within virtual box.
Configuring your Android Device
This section describes various things I did to setup a dev environment for my Android device:
- Root the device. I used Universal AndRoot
- Install ConnectBot so you have ssh and related network utilities
Creating Initial Android Maven Application
- Create initial project using instructions here.
- I found it best to create stub project structure using the maven-archtype-plugin and the archtypes at https://github.com/akquinet/android-archetypes/wiki
Connecting Android VM Device to Android SDK
In order for your code to be deployed from NetBeans IDE to Android Device and in order for you to monitor your deployed app from the Dalvik Debug Monitor (ddms) you need to connect your android VM device to the android sdk over TCP as described in the following steps.
- On Android Device open the Terminal Emulator
- Type su to become root (your device must be rooted for this
- Type following commands in root shell:
setprop service.adb.tcp.port 5555
stop adbd
start adbd - Type the following commands on dev machine shell. TODO: Note that IP address below is whatever is the ip address associated with the device (see ifconfig on linux for device vboxnet0)
adb tcpip 5555
adb connect 192.168.0.101:5555
For details on above steps see:
http://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp
- Set up port forwarding as described here http://redkrieg.com/2010/10/11/adb-over-ssh-fun-with-port-forwards/ (this is where I am most fuzzy)
- Build your maven android project using Right-Click / Clean and Build
Now for the acid test whether you can deploy your app to the device from NetBeans IDE!
- Right-click / Custom / Goal to show Run Maven dialog.
- Enter android:deploy in Goals field.
- Select Remember As button and enter android:deploy for its text field.
If all is well, the app will deploy to the device and will show up in its "Applications" screen.
Debugging Android App Using NetBeans Graphical Debugger
Once you can build and deploy your app to the real or virtual Android device, here are the steps to debug the app using NetBeans debugger:
- On Device: Start the app (TODO: determine how to start app on device with JVM options so it can wait for debugger connection. This should be easy)
- On Dev Machine run Dalvik Debug Monitor (ddms) in background: $ANDROID_HOME/tools/ddms &
- Lookup your app in ddms and get its debug port. This is described here but does not address NetBeans specifically
- In NetBeans do: Debug / Attach Debugger and specify the port looked up in ddms in previous step. You may leave rest of the fields with defaults. Click OK
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





Comments
Piero Sartini replied on Sat, 2011/06/18 - 1:25pm
Thanks for pointing out this possibility!
I've used the webOS SDK before and always liked their use of VirtualBox to emulate an actual device. It felt so much faster than the android emulator. If it gets only nearly the same performance with android, I am really looking forward to it. Will give it a try soon!
Michael Paitl replied on Tue, 2011/06/21 - 8:23am
Everything works beautifuly for me up to the 'Configuring your device' section above. Universal Androot installs fine (latest version) but when you try to root the device, it comes back with the message 'Cannot root this device :('. Did you use any particular version of Universal Androot?
Thanks
Farrukh Najmi replied on Tue, 2011/06/21 - 10:04am
Here are some issue I have not found a solution to yet. If any one has solutions to these please post.
“There are no android phones associated with this account.”
Farrukh Najmi replied on Tue, 2011/06/21 - 10:09am
in response to:
Michael Paitl
Fabrizio Giudici replied on Wed, 2011/06/22 - 10:05am
Mary Smith replied on Wed, 2011/06/22 - 3:50pm
Marc Ende replied on Tue, 2011/08/23 - 2:31pm
Angel Afirce replied on Sun, 2011/10/09 - 9:48am
I cant wait to try these applicationsf rom these software giants. I beleved the competition amongst them will ensure utmost quality.
custom doors
Matt Coleman replied on Fri, 2011/11/11 - 5:39am
Amey Hendra replied on Thu, 2011/11/17 - 2:39am
I guess editor/IDE is just personal perference more than anything else in this case, but it always a good idea to check what other people into. Netbeans is getting better last time I look at it when they send me the new release, but personally still perfer eclipse.
regard
Kiranatama
Ryan Fitz replied on Mon, 2011/11/21 - 2:05am
Andres Mattia replied on Tue, 2011/11/22 - 11:23am
javier godino replied on Wed, 2012/03/21 - 8:30pm
Hi,
Good article!!!
Is there a possibility to use a external camera to web camera with VirtualBox?
Thanks!!!
Javier
Matt Coleman replied on Thu, 2012/05/24 - 1:23am
wow!im am using Android,.is this available now?
website design buffalo
Mateo Gomez replied on Fri, 2012/05/25 - 1:02am
this is exciting..with so many apps now this is something
mexican bread
Farrukh Najmi replied on Wed, 2012/06/06 - 1:50pm
Berton Jain replied on Sat, 2012/07/14 - 11:53pm
Frank Verdin replied on Sun, 2012/09/23 - 8:05am
in response to:
Matt Coleman
________
machine expresso
Steve Sdas replied on Wed, 2012/10/10 - 10:39am
Steve Sdas replied on Sat, 2012/10/13 - 3:26am
Steve Sdas replied on Sat, 2012/10/13 - 7:33am
Stork Club replied on Fri, 2012/10/19 - 1:47am
in response to:
Steve Sdas
I have shared it Steve thanks for this
club stork
Steve Sdas replied on Thu, 2012/11/01 - 9:29am
Steve Sdas replied on Sun, 2012/11/11 - 8:23am
Steve Sdas replied on Mon, 2012/11/12 - 1:04pm
Uilly Tocky replied on Mon, 2013/01/14 - 4:30am
Uilly Tocky replied on Sat, 2013/02/02 - 6:46am
Uilly Tocky replied on Sun, 2013/04/14 - 10:28am
Uilly Tocky replied on Fri, 2013/05/24 - 1:12am