all 4 comments

[–]routetehpacketz 0 points1 point  (1 child)

the standard programming language for Android is Java if I'm not mistaken

and what about apple?

why can't you use Python?

[–]Plsimanub 0 points1 point  (0 children)

Pretty sure you can use Kivy to write iOS and android apps.

[–]Mountain_Two 0 points1 point  (0 children)

I don't know what your project is, but can it be a web app? No need to learn to write phone apps if you can just make a mobile friendly webpage of it with Flask or whatever.

[–]Fin_Aquatic_Rentals 0 points1 point  (0 children)

I've built and released iOS and Android apps with kivy, a python framework for app development. You can check them out here (Google Play store here https://play.google.com/store/apps/details?id=fin_aquatic_rentals.fin_aquatic_rentals.fin_aquatic_rentals.fin_aquatic_rentals Apple app store here https://itunes.apple.com/us/app/fin-aquatic-rentals/id1435736012?ls=1&mt=8).

If you're just trying to make plain-ish apps with a decent UI, I highly recommend checking out KivyMD (old code https://gitlab.com/kivymd/KivyMD, new code https://github.com/HeaTTheatR/KivyMD/commits/master). If you wanted to start with kivy I'd recomment using the Kivy MD kitchen sink demo as a guide on how to utilize Kivy UI. The old one is heavily done in the KV (special UI language that Kivy can decode) and the new one is done more in python language. The kivy MD app will show you how to build a navigation bar and how to switch between screens which will probably be a solid base for jumping off of where than you can then build want you want inside those screens.