Q1) I want to run a simple c program on android emulator.I am using windows xp os on my machine. I have installed sdk, jdk, eclipse for android development and succeeded running android application on AVD.

Q2) I just need to know is there any way to run a C program(without any java) on AVD. On my machine I have installed arm and using that I have compiled a C program.

Q3) I also want to know is it possible to push the compiled binary into android device or AVD and run using the terminal of the android device or AVD?

May be I am asking some stupid questions but I really need some help. Thanks for your time.

link|improve this question
feedback

3 Answers

You need to download the Native Development Kit.

link|improve this answer
I have done it already..but I haven't found anything useful what to do next? – user1125898 Jan 2 at 8:37
@user1125898 - What do you mean you haven't found anything useful? The NDK is exactly for the purpose of writing native code in C/C++. Scroll to the bottom of the link I provided and you'll see a section on getting started, as well as a link to the NDK discussion group. – Ted Hopp Jan 2 at 21:39
feedback

if you have installed NDK succesfully then start with it sample application

http://developer.android.com/sdk/ndk/overview.html#samples

if you are interested another ways of this then may this will help

http://shareprogrammingtips.com/c-language-programming-tips/how-can-i-write-applications-in-c-or-c-for-android/

I also want to know is it possible to push the compiled binary into 
android device or AVD and run using the terminal of the android device or AVD? 

here you can see NestedVM

NestedVM provides binary translation for Java Bytecode. This is done by having GCC compile to a MIPS binary which is then translated to a Java class file. Hence any application written in C, C++, Fortran, or any other language supported by GCC can be run in 100% pure Java with no source changes.

link|improve this answer
feedback

C/C++ programs cannot be run directly on AVD or emulator. A simple UI application in JAVA is required which can take your C/C++ programm as a library. Android devices accepts only Android binaries (.apk)

You can push files in android devices by using command adb push. (I am not sure of running binaries (C/C++) on terminal emulators.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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