Android is based on Linux; can native Linux applications be run on Android?
|
|
|
|
|
|
|
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 |
||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
