c++ & android

is thier any way to make android apps by c++
O.o
-- thanks for everyone
The best way of creating applications for Android is using Java.
You can find ways of using C++, but it will never be 100% compatible.

After a simple google search: http://developer.android.com/tools/sdk/ndk/index.html

Before downloading the NDK, you should understand that the NDK will not benefit most apps. As a developer, you need to balance its benefits against its drawbacks. Notably, using native code on Android generally does not result in a noticable performance improvement, but it always increases your app complexity. In general, you should only use the NDK if it is essential to your app—never because you simply prefer to program in C/C++.


I, personally, use Java with the Eclipse IDE for Android development.

Kind regards,
Raul Butuc
Last edited on
Topic archived. No new replies allowed.