What are the limitations of Python on Android?

Question:

I am getting ready to start a little Android development and need to choose a language. I know Python but would have to learn Java. I’d like to know from those of you who are using Python on Android what the limitations are. Also, are there any benefits over Java?

Asked By: Dave K

||

Answers:

I investigated this recently for similar reasons. My conclusions were that I could not use Python to develop a native-looking application, which is what I wanted at the time. Specifically:

  • Python can’t receive callbacks from the Java UI classes, so you can’t use any native Java UI elements such as ListView, etc. Only dialog boxes etc. are easily available. If you have a totally custom UI such as a game, you can try PyGame for Android, or you could look at Kivy, which also uses PyGame.

  • Packaging of Python applications is very difficult, especially because the Python interpreter is not included on Android by default. The Kivy and PyGame teams are making some intermittent progress on this.

  • Because of the aforementioned issues, Python is essentially never used to make full fledged applications published in the app store, and so the literature on how to handle the many sundry issues with SL4A (Scripting Layer For Android) is very thin.

So, if you want to make an application that uses native UI elements, that you can actually distribute in the Play Store, or both, Python is regrettably not an option.

Answered By: Andrew Gorcester

Most of the points mentioned by Andrew stand, I just wanted to mention that python can be and is used for full fledged Apps published on GooglePlay and even iOS. I can’t speak for other frameworks but here are some examples of Apps published using Kivy.

  1. Process Craft Google Play iOS
  2. Fantasy War hammer
  3. PreseMT is a multitouch presentation maker
  4. Memo robots
  5. Ground Truth
  6. Kaleidoscope
  7. Showcase demo example from Kivy project
  8. DefelectTouch game iOS
  9. Bargenius and many more…

On Packaging we have tried to make it as simple as possible, we also provide

  • A pre-built VM that can be used to make your apk with you having to do nothing except
    copying your project dir over and running one command.

On GUI, yes the ui is custom, by default(tries to match Android’s Holo theme). However it can be customised to resemble other look and feels, although I haven’t tried it personally.

Oh and as long as one is talking about python based apps on android, I found this project mentioned on stackoverflow PyMob, their apps page mentions some interesting apps .

Answered By: qua-non

I have developed Android Apps on the market, coded in Python. Downsides:

  1. Thus far my users must download the interpreter as well, but they are immediately prompted to do so. (UPDATE: See comment below.)
  2. The script does not exit properly, so I include a webView page that asks them to goto:Settings:Apps:ForceClose if this issue occurs.
Answered By: Diamond Dave
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.