Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ or Java for android?

Tags:

java

c++

android

I am thinking about picking up android development in my free time. I see that development is possible in Java and C++ but the latter is limited.

I am much more comfortable with C++.

So my question is what limitations exist with C++ on Android? Will I be able to develop full apps with it, or will I eventually have to learn Java?

like image 642
BigPete Avatar asked Dec 04 '22 08:12

BigPete


1 Answers

Pick the right tool for the job. The right tool for android is java, and occasionally c++ if it's really needed. Android runs on several different CPUs, and you'd be required to deal with fun stuff like compiling for platforms that you can't really test on - at least if you want to make apps for anyone but yourself.

like image 159
Erik Avatar answered Dec 06 '22 10:12

Erik