vote up 2 vote down star

Android is based on Linux; can native Linux applications be run on Android?

flag

3 Answers

vote up 5 vote down check

In general, no. Android apps run in a sandboxed Java virtual machine, so have to be written in Java or some language that compiles to Java bytecode.

However, there are ways to call native code. See http://developer.android.com/sdk/ndk/1.6%5Fr1/index.html

link|flag
That's a rather indirect answer. Yes, Android can run Java apps, since it's a Linux distribution that comes with a JVM. But that JVM is obviously a native application itself, so there is at least one native Linux application that can run on Android/Linux. – MSalters Oct 28 at 13:20
Actually, Android doesn't come with a JVM, it comes with a Dalvik VM. The Dalvik VM comes with a Java language implementation that compiles down to Dalvik bytecode, but not to JVM bytecode. I believe there's also a tool that can convert compile JVM bytecode into dalvik bytecode. Wikipedia (as usual) has a pretty good introduction to Dalvik: en.wikipedia.org/wiki/Dalvik_virtual_machine/… – Bob McCormick Oct 28 at 16:25
I don't think it's an "indirect answer." I understand the question to mean "Can a typical user install native Linux applications on Android." I think the answer to that is No, but obviously, as Android runs on top of Linux, there are native Linux programs running. – Kristopher Johnson Oct 28 at 23:31
vote up 3 vote down

Android does not run X Windows, nor does it have many of the standard GNU libraries. So, since most native linux applications require one or both of these, most will not run.

In addition, even Java programs can be limited, because the version of Java that Android applications are written in is a subset of the standard Java library.

link|flag
vote up 2 vote down

Not directly, no. Android's C runtime library, bionic, is not binary compatible with the GNU libc, which most Linux distributions use.

You can always try to recompile your binaries for Android and pray.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.