[android-developers] Re: urgent - how to include existing c++ code into Android

2012-07-20 Thread Károly Holczhauser
Hello there ! Yes, all of you had right ! I had created an extend C code in a cpp file with a JNI , after I was able to reach my original C++ lib. Thx , cheers On Wednesday, 18 July 2012 09:56:35 UTC+2, Juned Khan wrote: NDK is the only solution to run .cpp files or .c files -- You

[android-developers] Re: urgent - how to include existing c++ code into Android

2012-07-18 Thread Juned Khan
NDK is the only solution to run .cpp files or .c files -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: urgent - how to include existing c++ code into Android

2012-07-17 Thread Erik
The code you create with JNI can call into your c++ classes. -Erik On Monday, July 16, 2012 2:40:21 PM UTC-7, Károly Holczhauser wrote: Hello there ! I have four c++ file (four header and four cpp) with already implemented functionalaty, how can I import them into my Java Android code ?

[android-developers] Re: urgent - how to include existing c++ code into Android

2012-07-16 Thread RichardC
http://developer.android.com/tools/sdk/ndk/index.html On Monday, July 16, 2012 10:40:21 PM UTC+1, Károly Holczhauser wrote: Hello there ! I have four c++ file (four header and four cpp) with already implemented functionalaty, how can I import them into my Java Android code ? Import in

[android-developers] Re: urgent - how to include existing c++ code into Android

2012-07-16 Thread Károly Holczhauser
Hi ! I had already met with NDK, but it is good only for generate c++ code by native java declaration, isn`t ? Is it possible to do it on the another way ? Cheers, Karoly On Monday, 16 July 2012 23:53:10 UTC+2, RichardC wrote: http://developer.android.com/tools/sdk/ndk/index.html On

Re: [android-developers] Re: urgent - how to include existing c++ code into Android

2012-07-16 Thread Kristopher Micinski
No, there is no native framework, equivalent to the SDK, any C++ code will be running through jni. kris On Mon, Jul 16, 2012 at 5:59 PM, Károly Holczhauser holczhau...@gmail.com wrote: Hi ! I had already met with NDK, but it is good only for generate c++ code by native java declaration,