+ 2
Can I download c++ programs in android
2 odpowiedzi
+ 4
Hello, subrath arya !
The standard NDK does not support RTTI, and many of the functionality of the standard C++ is also not available, for example std :: string, etc. To solve this problem, you can recompile the NDK. http://www.crystax.net/android/ndk-r3.php. This modified version works on all Android phones running on the ARM processor.
Depending on the type of application, you must decide to use Java or C / C++. I would use C / C++ for something that requires higher average computing power and games - Java for the rest.
Just select one language and write most of your application in that language; JNI calls can significantly reduce performance. Java is not that difficult - if you know how to program in C / C++. The advantage of Java is that the application can run on any device running Android, where NDK applications depend on the architecture in which it was compiled
+ 1
is micromax ARM