I want to Create an Application that is build using python language with native . But I am not getting anything
- 1trying to write a android app in python is like trying to make apple juice with an orange, google have built so many great features into kotlin making it so powerful allowing devs to create wonderful apps, python isn't even mentioned once in any of the documentations. if you really are looking to make an android app then use kotlin, it will serve you well in the future if you decide to become a android dev, doing in python will not help you in anyways in terms of learning a skill.Zaid Zakir– Zaid Zakir2021-05-27 14:55:40 +00:00Commented May 27, 2021 at 14:55
- I have made a machine learning project using python for desktop but i am not sure that the features as same implemented for desktop application will support android in other languages . There is way using java but it will be difficult to convert that code in java .So i was trying to find the alternate .sanjay prajapati– sanjay prajapati2021-05-27 14:59:39 +00:00Commented May 27, 2021 at 14:59
- Oh ok , but if you feel like this application will be important in achieving your goals, i will highly recommend you to learn kotlin , it would take you a week maximum , in return you will gain a brand new highly demand skill. Best of luckZaid Zakir– Zaid Zakir2021-05-27 15:07:02 +00:00Commented May 27, 2021 at 15:07
- Sure i Will learn , and thankssanjay prajapati– sanjay prajapati2021-05-27 15:14:13 +00:00Commented May 27, 2021 at 15:14
2 Answers
As far as I know, native applications are written in a language that the platform you want to develop the application for supports. For example, native android solutions would be applications written in Java or Kotlin, for iOS apps written in Swift. To the best of my knowledge, Android does not support Python for the development of an application.
Comments
Native Android applications can only be written in Java or Kotlin languages. Kotlin is currently the official language for coding Android Apps due to its many advantages over Java e.g Reduces boilerplate codes. It also introduces functional features to support Java interoperability.
You can also code android applications using C and C++ languages by Installing the NDK and CMake.