Craig Norton
Craig Norton

Reputation: 1047

Developing android applications on an arm processor

I'm wanting to develop android applications on Ubuntu which is on an ARM processor. I've looked for an android sdk that will run on an arm processor but all I can find is the x86 version on the android site.

Does anyone know where I can get an ARM version?

Upvotes: 2

Views: 2749

Answers (3)

armido
armido

Reputation: 1

My environment is Ubuntu Precise chrooted on a Xoom tablet. Ubuntu was installed using Linux Deploy from Google Play.

Both Qt Creator and Eclipse for armhf include SDK and JDK. However, in Eclipse they have to be installed via 'Install Software' accessed through 'Help', 'Options'. I'm still involved in steps necessary to configure both programs and can't say positively yet that the Qt Creator SDK has been installed by default.

I've turned my attention to finding a toolchain which will most likely have to be installed from source. Thus far it looks like the GNU version will be my first choice.

My objective is to develop an Android version of OpenCPN, an open source navigation and charting program.

Upvotes: 0

samkuhn
samkuhn

Reputation: 11

Terminal IDE on the play store contains the Android SDK, and the tools you need to develop Android applications pre-compiled for ARM.

It also includes a 4 page terminal emulator and VIM for coding/building directly on the device.

If you wanted to compile under Ubuntu (on device) you could probably install it and copy out the ARM compiled binaries to roll your own development environment.

I believe AIDE is similar, but provides a GUI code editor instead of VIM. But I haven't used it myself.

Upvotes: 1

CommonsWare
CommonsWare

Reputation: 1007544

There is no port of the Android SDK to the ARM processor that I am aware of. I'm not even sure that there's a port of the Java JDK to the ARM processor, and that is a prerequisite for the Android SDK.

Upvotes: 1

Related Questions