Native C/C++ code on an Android platform - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T02:35:14Zhttp://stackoverflow.com/feeds/question/607721http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform1Native C/C++ code on an Android platformequinox2009-03-03T19:12:18Z2009-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#6077363Answer by Michael Trausch for Native C/C++ code on an Android platformMichael Trausch2009-03-03T19:16:57Z2009-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#6085910Answer by miracle2k for Native C/C++ code on an Android platformmiracle2k2009-03-03T22:55:49Z2009-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#6163780Answer by Johan for Native C/C++ code on an Android platformJohan2009-03-05T19:58:20Z2009-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#9324820Answer by Reflog for Native C/C++ code on an Android platformReflog2009-05-31T17:14:40Z2009-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#10131810Answer by Marc for Native C/C++ code on an Android platformMarc2009-06-18T15:00:41Z2009-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#10515952Answer by crashmstr for Native C/C++ code on an Android platformcrashmstr2009-06-26T22:42:24Z2009-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#16997302Answer by Raymond for Native C/C++ code on an Android platformRaymond2009-11-09T08:27:55Z2009-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>