Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to ask if someone know how to make communicate a natif c android application and an classic java android application, the natif c android application running in background. Thank's.

share|improve this question

3 Answers

Please read the specifications about the Android NDK!

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

a good tutorial how to start is:

http://mobile.tutsplus.com/tutorials/android/ndk-tutorial/

share|improve this answer

For native C , C++ application there is Android - NDK is available, Using JNI you can communicate Android application and C,C++ application.

Android - NDK

share|improve this answer

First thing you need to do is download the android-ndk available here. It comes with it's own documentation which will be available here: [android-ndk path]/documentation.html, You can also find information in the android-ndk link above.

If you're anything like me you'll need as much help as you can get developing a JNI bridge. I had to find these resource myself but they were invaluable to me. See below for JNI information:

Table Of Contents

Methods (older resource)

Methods (newer resource)

Types

Reference

You can integrate your NDK/C++ code and debug it from Eclipse using Sequoyah and CDT (C/C++ Development Tooling)

More specifically to answer your question - You can use a service as a wrapper around your native code if you require the native code to run in the background. This will enable you to push information to the native code using the OS's intent mechanism in a fifo structure.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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