Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Native C/C++ code on an Android platform

I have two questions regarding native C/C++ on Android platforms:

  1. Is it possible for device manufactures to develop native C++ applications on an Android platform?

  2. How can I develop my own native C++ application / library that has an upper layer Java front-end / API on an Android platform?

like image 626
Eli Ben-Ami Avatar asked Mar 03 '09 19:03

Eli Ben-Ami


2 Answers

Official announcement and download links:

Introducing Android 1.5 NDK, Release 1
Posted by David Turner on 25 June 2009 at 10:30 AM

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.

http://android-developers.blogspot.com/2009/06/introducing-android-15-ndk-release-1.html

like image 53
crashmstr Avatar answered Nov 07 '22 03:11

crashmstr


this blog entry explains how to do native programming on android: http://rxwen.blogspot.com/2009/11/native-programming-on-android.html hope it helps.

like image 34
Raymond Avatar answered Nov 07 '22 04:11

Raymond