Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Java v. Python [closed]

Is there any reason to favor Python or Java over the other for developing on Android phones, other than the usual Python v. Java issues?

like image 758
foosion Avatar asked Oct 28 '09 23:10

foosion


2 Answers

Java is "more native" on the Android platform; Python is coming after and striving to get parity but not quite there yet AFAIK. Roughly the reverse situation wrt App Engine, where Python's been around for a year longer than Java and so is still more mature and complete (even though Java's catching up).

So, in any situation where you'd be at all undecided between Java and Python if the deployment was due to happen on some general purpose platform such as Linux, I think the maturity and completeness arguments could sway you towards Python for deployment on App Engine, and towards Java for deployment on Android.

like image 185
Alex Martelli Avatar answered Sep 29 '22 10:09

Alex Martelli


On the mobile platform performance and memory usage are much more critical than desktop or server. The JVM that runs on Android is highly optimized for the mobile platform. Based on the links I have seen about Python on Android none of them seem to have an optimized VM for mobile platform.

like image 31
Teef Avatar answered Sep 29 '22 09:09

Teef