Native C/C++ code on an Android platform - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T02:35:14Z http://stackoverflow.com/feeds/question/607721 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform 1 Native C/C++ code on an Android platform equinox 2009-03-03T19:12:18Z 2009-11-09T11:51:03Z <p>Hi,</p> <p>Does anybody know the answer to the following questions?</p> <ol> <li><p>Is it possible for device manufactures can develop native C++ applications on an Android platform?</p></li> <li><p>How can I develop my own native C++ application / library that has an upper layer Java front-end / API on an Android platform?</p></li> </ol> <p>Thanks, Munish</p> http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform/607736#607736 3 Answer by Michael Trausch for Native C/C++ code on an Android platform Michael Trausch 2009-03-03T19:16:57Z 2009-03-03T19:16:57Z <p>It is possible, but it's not supported. Native code requirements may vary significantly from one Android system to the next; unless you are working on very low-level infrastructure, it is best to go the Java-source-to-Dalvik-VM route for portability. And of course, you'll likely be tied to the very phone you wrote your native code for, though if you integrate it into Android it may be accepted and maintained for all platforms the system intends to support.</p> http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform/608591#608591 0 Answer by miracle2k for Native C/C++ code on an Android platform miracle2k 2009-03-03T22:55:49Z 2009-03-03T22:55:49Z <p>If you are a device manufacturer, of course. You can essentially do whatever you want.</p> http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform/616378#616378 0 Answer by Johan for Native C/C++ code on an Android platform Johan 2009-03-05T19:58:20Z 2009-11-09T11:51:03Z <p>Well Android tend to have a normal Linux in the bottom, so writing Linux apps should be possible if you only can get the code in there... (but often you can't, since the phone is locked at that level)</p> <p>So the answer would be:</p> <ol> <li>Yes, but it depends</li> <li>Yes, but it depends</li> </ol> http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform/932482#932482 0 Answer by Reflog for Native C/C++ code on an Android platform Reflog 2009-05-31T17:14:40Z 2009-05-31T17:14:40Z <p>This article explains it quite well: <a href="http://davanum.wordpress.com/2007/12/09/android-invoke-jni-based-methods-bridging-cc-and-java/" rel="nofollow">http://davanum.wordpress.com/2007/12/09/android-invoke-jni-based-methods-bridging-cc-and-java/</a></p> http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform/1013181#1013181 0 Answer by Marc for Native C/C++ code on an Android platform Marc 2009-06-18T15:00:41Z 2009-06-18T15:00:41Z <p>Google has released a Native Development Kit (NDK) (according to <a href="http://www.youtube.com/watch?v=Z5whfaLH1-E" rel="nofollow">http://www.youtube.com/watch?v=Z5whfaLH1-E</a> at 00:07:30).</p> <p>Hopefully the information will be updated on the google groups page (<a href="http://groups.google.com/group/android-ndk" rel="nofollow">http://groups.google.com/group/android-ndk</a>), as it says it hasn't been released yet.</p> <p>I'm not sure where to get a simple download for it, but I've heard that you can get a copy of the NDK from Google's Git repository under the donut branch.</p> http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform/1051595#1051595 2 Answer by crashmstr for Native C/C++ code on an Android platform crashmstr 2009-06-26T22:42:24Z 2009-06-26T22:42:24Z <p>Official announcement and download links:</p> <blockquote> <p>Introducing Android 1.5 NDK, Release 1<br /> Posted by David Turner on 25 June 2009 at 10:30 AM</p> <p>Many of you have been asking for the ability to call into native code from your Android applications. I'm glad to announce that developers can now download the Android Native Development Kit from the Android developer site.</p> </blockquote> <p><a href="http://android-developers.blogspot.com/2009/06/introducing-android-15-ndk-release-1.html" rel="nofollow">http://android-developers.blogspot.com/2009/06/introducing-android-15-ndk-release-1.html</a></p> http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform/1699730#1699730 2 Answer by Raymond for Native C/C++ code on an Android platform Raymond 2009-11-09T08:27:55Z 2009-11-09T08:27:55Z <p>this blog entry explains how to do native programming on android: <a href="http://rxwen.blogspot.com/2009/11/native-programming-on-android.html" rel="nofollow">http://rxwen.blogspot.com/2009/11/native-programming-on-android.html</a> hope it helps.</p>