Can I download c++ programs in android | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Can I download c++ programs in android

2nd Jul 2018, 3:16 PM
subrath arya
subrath arya - avatar
2 Answers
+ 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
2nd Jul 2018, 3:30 PM
Alexander Sokolov
Alexander Sokolov - avatar
+ 1
is micromax ARM
2nd Jul 2018, 4:14 PM
subrath arya
subrath arya - avatar