What are the possible performance issues when using python over java to develop Android applications?

I am new to Android and have been looking for an application (email client) that has a good filtering system, but after many searches on Google and Android, it seems that none of the email clients available for Android provides such features. (at least there are no free ones). So finally, I decided to develop it myself. Now the problem is that I want to develop this in Python, but I am concerned about the efficiency issue. So the questions are:

  • Besides the limited API for Python on Android, what factors do I need to monitor when choosing between Java and Python?

  • Also, I think we need to install the Python compiler for users using our Python application, so does that mean more memory usage and lower performance?

PS Considering performance and memory usage, does JAva seem better? Why fix python usage can affect performance and memory usage?

+4
source share
1 answer

You can install and run Python on Android, this is just a Linux window, but if you are doing something graphical, either using the Android graphical interface, either Java, or openGL. Check out this link to install Python on Android. You can use Python to quickly write scripts and run some programs quickly. But for Android, it may be a little difficult for you ...

+2
source

Source: https://habr.com/ru/post/1382541/


All Articles