Convert Python to Android with WINDOWS & LINUX + Fix Common Bugs

  Рет қаралды 210,650

Python Simplified

Python Simplified

Күн бұрын

In this tutorial, I will show you how to convert your Python projects into Android applications - USING WINDOWS! 😎
We will Create a Windows Subsystem for Linux (WSL), Learn about Android's Debug Bridge (adb) and use Buildozer to compile our .py files into .apk.
By the way, I'm extra annoying in this video so my apologies in advance! 🤪 I've detected a few crazy cat lady moments while editing... I don't know why I was shouting at the keyboard 😅
ANYHOW... For this project, we will first need to learn about 🥝Kivy or KivyMD🥝, which are Python GUI libraries that are responsible for the interface of the app.
🛑 If you're not yet familiar with Kivy or KivyMD - check out any of my quick tutorials:
⭐ Mobile App with KivyMD ⭐
• Mobile App with KivyMD...
⭐ Expand Mobile App with KivyMD ⭐
• Expand KivyMD GUI App ...
⭐ Simple App with Kivy ⭐
• Simple Python App with...
⭐ EXTRA: Python Classes and OOP ⭐
• Python Classes and Obj...
(will help with understanding the App Class)
*********************************************
⏰ Time Stamps: ⏰
00:00 - intro
00:30 - Install Windows Subsystem for Linux (WSL)
05:14 - Install Buildozer and Dependencies
06:52 - Android Debug Bridge (adb)
09:53 - Developer Options on Android Device
10:38 - buildozer.spec requirements
12:06 - Start Windows adb server
12:44 - Operation not permitted FIX
13:34 - Convert Python to Android
15:45 - Icons not displayed on Android FIX
18:05 - Thanks for watching! see you soon! 😊
*********************************************
Special thank you to Delphi Niki and WinTush
for sharing your code with me on Github! 😁
*********************************************
My Github:
github.com/MariyaSha
Windows Subsystem Docs:
docs.microsoft.com/en-us/wind...
Android Platform Tools:
developer.android.com/studio/...
Buildozer Documentation:
buildozer.readthedocs.io/en/l...
Icons Not Displaying Issue on Github:
github.com/kivymd/KivyMD/issu...

Пікірлер: 472
@timmaassen9234
@timmaassen9234 2 жыл бұрын
I always get the error message: "Unknown command/target android" after the command "buildozer -v android debug". I followed your tutorial step by step so far. I only used a different python-file and some picture which were all in the folder- Do you have an idea what the problem could be? Good explanations btw. ;)
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Hi Tim! 😃 Are you using Windows 7 by any chance? Sorry, I haven't encountered this error earlier but I've noticed somebody on stack overflow did and they were using Windows 7: stackoverflow.com/questions/60077141/building-an-android-app-with-kivybuildozer/70162831#70162831 It seems that something is wrong with the Buildozer installation but I couldn't find a proper solution to it online... everyone just replies with "you can't work with Buildozer on Windows" and refers to Google Colab (which never even seemed to work for me). I don't think it's the problem here, but does your version of Kivy and KivyMD matches mine? you can find out the exact version with "conda list" or "pip list" and make sure you update it in the requirements in your buildozer.spec file. (it's a long shot, it's probably unrelated but it's worth a try) If everything matches but the error repeats, do you mind loading your code to Github so I can take a closer look? Thanks! 😊
@timmaassen9234
@timmaassen9234 2 жыл бұрын
@@PythonSimplified Thanks a lot! I found a way now. I still don't now what the problem is but here is the short story: I used to convert my python apps via Colab to APKs for my android phone. For some reason it stopped working and that is why I looked up your video. Your way doesn't work for my setup for some reason (maybe I did something wrong idk). But you gave me that idea to check the version of my kivy application. Now that I have updated my kivy, the old way works again! So thanks again for the quick reply and for your video! A lot! Because I spend 3 days on that problem by now and it didn't cross my mind to check if my kivy version was old (yeah I guess I am dumb lol). Thanks!
@PythonSimplified
@PythonSimplified 2 жыл бұрын
@@timmaassen9234 wow!! I can't believe it worked!! I didn't think it was the problem but I'm super happy it helped!!! 😃😃😃 Also happy to hear that the Colab way works for you! Do you mind sharing which tutorial you followed to get it done? It might help other folks who stumble upon this video and have issues with the WSL way 😊
@PythonSimplified
@PythonSimplified 2 жыл бұрын
And you're most certainly not dumb!!! It wasn't an obvious issue!!! It's just a matter of troubleshooting! 😉
@timmaassen9234
@timmaassen9234 2 жыл бұрын
@@PythonSimplified Unfortunately, I cannot remember the exact tutorial, but I can share the code: !pip install buildozer _____ !pip install cython==0.29.19 # might be updated when newer version is released ____ !lsb_release -a ____ !sudo apt-get install -y \ python3-pip \ build-essential \ git \ python3 \ python3-dev \ ffmpeg \ libsdl2-dev \ libsdl2-image-dev \ libsdl2-mixer-dev \ libsdl2-ttf-dev \ libportmidi-dev \ libswscale-dev \ libavformat-dev \ libavcodec-dev \ zlib1g-dev ____ !sudo apt-get install -y \ libgstreamer1.0 \ gstreamer1.0-plugins-base \ gstreamer1.0-plugins-good ____ !sudo apt-get install build-essential libsqlite3-dev sqlite3 bzip2 libbz2-dev zlib1g-dev libssl-dev openssl libgdbm-dev libgdbm-compat-dev liblzma-dev libreadline-dev libncursesw5-dev libffi-dev uuid-dev libffi6 ____ !sudo apt-get install libffi-dev ____ !buildozer init ____ !buildozer -v android debug This code will create a bin folder insider Colab containing the APK file. You can dowload it to your computer and from there load it onto your phone. After that you just need an APK installer. Voila! (Do not forget to make sure that both the kivy and kivymd versions fit to the one from your app!!) P.S.: I cannot remember where the code is from. I remember that it is from a tutorial from some youtuber. Please comment it if you know it so I can give a link and credit!!!
@FuzzerHash
@FuzzerHash 2 жыл бұрын
Your channel is amazing, not just because the content you teaches, but by your crystal clear explanation too.
@johncheung8545
@johncheung8545 2 жыл бұрын
I am a beginner of Python. I was always attracted by your enthusiasm in your lectures. As recent as today, I failed twice in converting a kv file into apk. Then I realized that I don't need this approach at all. I'll just need Android Studio to write Android apks. So, thanks for your info, although I won't be using it. I am sure I shall need your help in the future. Stay put, take care! Good luck!
@renatoaoinfinito
@renatoaoinfinito 2 жыл бұрын
Hi! I was looking for some help in PT-BR for this matter and then I found your video. Thank you so much. You can´t believe but I lost several times installing and reinstalling Linux virtual machines in VirtualBox for nothing. And then, you, in less than 20 min helped me to solve my buildozer issues. So thank you!!!! Congrats!
@JuanDelaCruz-ekmg
@JuanDelaCruz-ekmg 8 ай бұрын
I can't thank you enough for this tutorial. I am going nuts trying to find ways on how to be able to create the .apk file and finally use the app in my android phone. You are a lifesaver! Glad I was able to find your channel.
@Johnbrown-op5xt
@Johnbrown-op5xt 2 жыл бұрын
I had no idea about python a few months ago. I just started coding. Thank you very much for your useful content. I loved your explanation. Thanks again, good luck.
@kabilansundaram5411
@kabilansundaram5411 2 жыл бұрын
As always, your pace and the way of explanation of the tutorials, are excellent for beginners like me to follow along. I like all your videos.
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much for the lovely feedback Kabilan! 😁 Super glad to have you onboard! 😊
@ZurioSi
@ZurioSi 2 жыл бұрын
Amazing video and very well explained, I love it!. Thank you so much, I'm wondering how the hell you don't have at least 100k subscribers... Your content is very good.
@yopecador910
@yopecador910 2 жыл бұрын
KZfaq recommended me this video and I don't even know how to make a web page, but the tutorial is so well done that now I wanna learn Python
@barrykruyssen
@barrykruyssen Жыл бұрын
You are amazing. Exact step by step instructions without any "waffling" about.
@carlosherrera4282
@carlosherrera4282 9 ай бұрын
Awesome tutorial! I have been working with Windows kivy apps, but was missing a clear tutorial on how to bundle for Android! Thank you só much!
@nour-eddineoumakhlouf5296
@nour-eddineoumakhlouf5296 2 жыл бұрын
Increduble! Wow!! Thank you Mariah . It works for me. All your steps were correct from A to Z.
@syedshah1769
@syedshah1769 2 жыл бұрын
Just Great. For so many days trying to convert .py kivy program to apk but no use. After following your tutorial everything is just working smooth as it should. Thanks a lot.
@edwardreyes8341
@edwardreyes8341 2 жыл бұрын
I don't really work with python, only for small things, but your explanations are so good that i understand everything and i've been practicing with your videos, thanks Mariya!
@sankaranarayanans9000
@sankaranarayanans9000 9 ай бұрын
Hey Maria!. Thanks a lot for this video. It worked and I finally converted my kivy and kivymd file into an apk. 😄💕
@portinho199
@portinho199 2 жыл бұрын
My mouth are openned... How you turnned the Pandora box in a golden cup in the finish rainbow!!!! Loved this video and also you english continues perfect, clear and good to understood. Congratulations more on time!!! Big hug from Brazil!!!
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much for the incredible comment Luis! So happy you liked this tutorial, I hope it helps with your conversion! 😁
@TheMandiyualbo
@TheMandiyualbo Жыл бұрын
Followed every step and it worked perfectly. Thank you so much for all these guides, they help a lot!
@PythonSimplified
@PythonSimplified Жыл бұрын
Yeeey!! Thank you so much, Francisco!! I'm super happy I could help!!! 😀 I remember I spent 3 days on trying to figure out how this conversion works, and when I did figure it out - I couldn't remember the exact steps that led me there so I had to start all over again 😅😅😅 hahahahahah Thank you so much for your support, I really appreciate it! 😊
@ronaldrosete4064
@ronaldrosete4064 2 жыл бұрын
I'm so thankful to see this video. Hope it works once I followed your steps. Thank you. By the way, I already subscribed in your channel. I expect more Python videos in the future.
@theblackelephant
@theblackelephant 2 жыл бұрын
Guys am In love with her teaching python. Thank you alot
@varsketisLT
@varsketisLT 2 жыл бұрын
Earned a sub today. Glad I stumbled upon you. Thank you so much and keep going!
@lopoisaac
@lopoisaac 2 жыл бұрын
Woow! Thanks for this detailed tutorial!! You make it look soo easy :D
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you Lopo!! 😁 it is indeed very easy when you follow my tutorial! Can't say it was anywhere near easy to figure out without it though 😅 There are many Stack Overflow and Github debugging threads scattered around the internet... so it's like finding a fish in the ocean 🤪 Mounting C: and matching the Windows adb server were quite a nightmare... but not anymore! 😉
@anke4347
@anke4347 9 ай бұрын
Thank you so much. This was awesome and actually working in contrast to many other tutorials.
@mohamedfariz8918
@mohamedfariz8918 2 жыл бұрын
18:12 The sound of Victory. Thank you for your wonderful tutorial.
@PythonSimplified
@PythonSimplified 2 жыл бұрын
hahahaha YES! I struggled so much with debugging everything that a Hallelujah praise was a must! 😁 You're absolutely welcome and I hope it helps everybody with their conversion! 😊
@evdenevenakliyatistanbul
@evdenevenakliyatistanbul 2 жыл бұрын
you are a great teacher explaning everything clearly. glad ı found your channel. subscribed.
@nickheyer
@nickheyer 2 жыл бұрын
I've never seen someone spell Mariya like that! How cool. Also sweet tutorial!
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you Nick! It's the Ukrainians who decided to spell it that way on my passport... I'm actually very lucky they didn't go for Marija 🤣🤣🤣
@alkischaralambopoulos8374
@alkischaralambopoulos8374 2 жыл бұрын
Dear Mariya, let me congratulate you for this video. Your explanations were easy to understand and implement. Your detailed and clear explanations were unique to me and helped me to create an android app in my cell phone and tablet. The question I have for you is how to incorporate an icon, other than the one of the kivy app, in my phone or tablet. Thanks a lot, Alkis
@udbhav3760
@udbhav3760 2 жыл бұрын
Thank you for this video. This was very useful for me I don't know about other's❤️
@alanwest546
@alanwest546 2 жыл бұрын
Good video. As a student of python and other languages, this was helpful
@trtlphnx
@trtlphnx 2 жыл бұрын
Wow: This is Incredibly Helpful, Thanks ~ You Are My Favorite Computer Instructor On The "Tube" ~ Keep it Coming ~
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much, always a pleasure reading your comments! 😁😁😁
@hriscaemilteodor2056
@hriscaemilteodor2056 Жыл бұрын
OMG "OFC we have read all of them" haha u maide my day Maia Thx
@ChristianBeringer
@ChristianBeringer 2 жыл бұрын
Might be a stupid question, but is it possible to install these application at the external SD-card, if these is formated as "internal storage" or must it be installed next to the operating system? But besides: Great work! I was searching a long time for these topic...
@mostafaarabi4793
@mostafaarabi4793 Ай бұрын
Best easy explanation i seen at all.
@dironin2363
@dironin2363 2 жыл бұрын
I love your way using your hands for teaching purpose ❤
@PythonSimplified
@PythonSimplified 2 жыл бұрын
It helps me to stay in rhythm! hahahaha 🤣 plus, I grew up in the Middle East so I can't really speak without hand gestures... I'm waving them all over the place even in person 🤪
@gwh0
@gwh0 2 жыл бұрын
@@PythonSimplified My wife does that ... despite my incessent nagging.
@husain6131
@husain6131 2 жыл бұрын
You have good knowledge. And Very very nice your teaching style and your voice .thanks ❤️❤️❤️
@miney3212
@miney3212 2 жыл бұрын
I love you so much i have been waiting for this video for months I love you so very much
@josuegomez2746
@josuegomez2746 2 жыл бұрын
excellent video, well explained and everything works perfectly, keep it up.
@mschon
@mschon 2 жыл бұрын
Many thanks for this video... You're amazing!!! Thanks for sharing 😍
@musicwithcode1322
@musicwithcode1322 Жыл бұрын
Thank you, thank you, thank you. I deployed a snake game that I built, to my phone and I feel like a genius :D Thank you for your explanations, your playful attitude, and for making me feel like a genius.
@Henry_Nunez
@Henry_Nunez 2 жыл бұрын
Hello my dear and beautiful programmer friend, this topic is very interesting. I speak Spanish and I will see a way to learn what you explain to us. Thanks
@skycloud4802
@skycloud4802 2 жыл бұрын
Damn that's a lot of work. Those Python makers didn't make it easy did they? I appreciate you taking it step by step though.
@ODRACLIVE
@ODRACLIVE 2 жыл бұрын
Thank you for this video Mariya, it's very interesting!!!! ¡Saludos!
@holyglory2339
@holyglory2339 Жыл бұрын
If your app is crashed after the loading screen, you can try following: in buildozer spec file after the string "source.include_exts =" type all extentions of files of your project, including database file, font, picture... everything.
@hoxas
@hoxas Жыл бұрын
Awesome video, thank you very much :)
@veselinkadankov7706
@veselinkadankov7706 2 жыл бұрын
Its working! I am very happy about that! I can`t wait to try it with application of my own 🙂
@PythonSimplified
@PythonSimplified 2 жыл бұрын
That's awesome! Have fun! 😁😁😁
@veselinkadankov7706
@veselinkadankov7706 2 жыл бұрын
@@PythonSimplified Thank you very much Mariya! ❤ I have a question. What if our project contain a .kv file. Do we need to change something else?
@ksunilkumar-ktechglobal8449
@ksunilkumar-ktechglobal8449 2 жыл бұрын
hi...I love your explanations, enjoyable, understandable, learnable....My wishes!!
@charlescollins9119
@charlescollins9119 2 жыл бұрын
TY Dr Mariya. your vids are awesome!!!
@benjaminaguayo7687
@benjaminaguayo7687 2 жыл бұрын
Thank you for the completed explanation. This is what I needed
@PythonSimplified
@PythonSimplified 2 жыл бұрын
You're absolutely welcome Benjamin! Let me know how it turned out on your end! 😊
@projectmuscle2m
@projectmuscle2m Жыл бұрын
@@PythonSimplified abd not installing
@sojotoledo
@sojotoledo Жыл бұрын
Hello Mariya, I am writing to thank you for your contribution, you have a very understandable way of explaining. But when executing the program it gave me an error, and I detected that the problem is in this instruction: from kivymd.uix.toolbar import MDToolbar, my question is: how did you manage to use the MDToolbar?
@massus6830
@massus6830 2 жыл бұрын
thank you for the tutorial, I never knew before that python could be converted to apk
@rodrigoventura3538
@rodrigoventura3538 2 жыл бұрын
Hi Mariya, thanks for the video. I have a question: how did you get the adb version 1.0.39? I could not find it.
@seannelson9088
@seannelson9088 Жыл бұрын
Amazing. Thank you. Subbed.
@pcservicecenter4071
@pcservicecenter4071 2 жыл бұрын
Hi Mariya. Great video! Could you please let me know which "phone mirror app " do you use at 10:30 ?
@saisankalp25
@saisankalp25 Жыл бұрын
Thank you so much, this solved my problem 🙂
@emanuelbarreira2007
@emanuelbarreira2007 8 ай бұрын
it took me almost 5 hours but i worked, thanks
@ChatGPT-ef6sr
@ChatGPT-ef6sr Жыл бұрын
The only content showing this in the world.
@rohandesigns
@rohandesigns 2 жыл бұрын
Subscribed..! It seems bit complicated..😯😥 love your tutorials..👍🏻
@MindfulEnergies3
@MindfulEnergies3 8 ай бұрын
Thanks for the energetic tutorial as always. The line was left commented out while setting config to point to github fork. Was that intentional?
@vanmmam_maaru
@vanmmam_maaru Жыл бұрын
awesome explaination:)... make video like this...
@leventefarkas4163
@leventefarkas4163 Жыл бұрын
Hi! What program did you use to mirror your phones srcreen, and what did you use for the UI?
@user-ow1he8qm2h
@user-ow1he8qm2h 2 жыл бұрын
You are the best Teacher! Greetings from Ukraine!)
@veselinkadankov7706
@veselinkadankov7706 2 жыл бұрын
Many thanks for this very usefull tutorial and your hard work what you do for us! I love your tutorials, you are so nice and beautiful! We will be love to see more video tutorials from you. Maybe you could make a tutorial for steps about uploading an app to Google Play Store. It would be usefull for many people i think.
@hamoudimaghoul3407
@hamoudimaghoul3407 2 жыл бұрын
Thank you for this guided video (\/). and i hope you more progress and brilliance.🌺
@johnpaul4805
@johnpaul4805 2 жыл бұрын
Hi, Your Tutorial really helped me. But there is single error i.e the app installed on my phone go toloading mode and quickly stops working. The app closes itself
@erickedgardolandaverdealas2288
@erickedgardolandaverdealas2288 2 жыл бұрын
Wow Your chanel is amazing and it shows from the quality, explanation and the languages subtitles. This day I got one question. Can I do the whole process using only git bash (without downloading Ubuntu App and the dependences of kali linux)?. Because I understand you need linux to do the whole process but git bash is a linux terminal too. Greetings from El Salvador
@HungBMHero
@HungBMHero 2 жыл бұрын
Does it work if we have multiple folders in the main.py directory? Do I have to change any line in the spec file or just keep it like in the video?
@marie-pierneault1035
@marie-pierneault1035 2 ай бұрын
Hey there, I'm quite new to kivy and exporting apk. I was wondering if the three adb files could have been copy/pasted in the B2D files to replace them? Else why not? Thanks a lot! :)
@maheswarkk1034
@maheswarkk1034 2 жыл бұрын
Hey mariya I have a question. Do we need the adb server if we are using our own python file? Sorry if this is s dumb question😅
@winwiths.g6155
@winwiths.g6155 8 ай бұрын
The tutorial dosent work for me even when Mariya tried to debug the buildozer -v android debug by the sudo mount command thing i followed the exact same process but that didnt work!
@TomMedia
@TomMedia Жыл бұрын
Hi there! I converted a .py file to an .apk file using Google Colab. Once the file was created, I installed it on my Android device. However, when I opened the app, it immediately crashed and closed. I have no clue what's going on, and I've tried fixing it in many ways, but nothing seems to work. Can you suggest any solutions? Thanks!
@aavalos163
@aavalos163 Жыл бұрын
Your tutorials are the best. Thank you for sharing. I am trying to figure out my app that includes sqlite3, a form and a list for a CRM System. It works fine on my laptop. But It keeps crashing after showing the first form screen. I am using linux mint 20.1, python 3.8, kivy 2.1.0 and kivymd 1.1.1.. Any advice will be appreciated. Thank you.
@keithramey4723
@keithramey4723 2 жыл бұрын
Thanks for your video! I was able to get it to work overcoming a few glitches on the way. Would it be possible to give some references to know how you figured out your dependencies? For instance, how did you know to add pillow as a dependency? Did you just run it and get error messages?
@Dramula1
@Dramula1 2 жыл бұрын
+1
@Spencer-tk4xt
@Spencer-tk4xt 7 ай бұрын
I know this comment is old, but for anyone else wondering. The python code for the app imported pillow, if the python code imports a library, it's a dependency.
@tidewalkieleblanc4629
@tidewalkieleblanc4629 Жыл бұрын
Hello, i just go through the video. I installed an android debug Bridge version 1.0.41 and as the adb version of the file is 1.0.39 it does not match. What should i do in this case ?Thank u?
@ganishernematov47
@ganishernematov47 Жыл бұрын
helped a lot, thank you!
@flamescion5225
@flamescion5225 2 жыл бұрын
So that's where I need to download the SDK, thank you!
@PythonSimplified
@PythonSimplified 2 жыл бұрын
You're welcome! 😊 Just make sure your Windows adb version is matching the Linux one! 😉 (if you're compiling this on a Windows machine)
@lawrencechin3743
@lawrencechin3743 Жыл бұрын
at 11:48 how do you check your kivymd version? I can check my kivy version from pip freeze, but can't see my kivymd version under pip freeze
@SuperCantillano
@SuperCantillano 2 жыл бұрын
Extra annoying? Its ok. We're all a little sometimes. Nice video young lady, I like it 👍
@PythonSimplified
@PythonSimplified 2 жыл бұрын
hahaha the pitch of my voice is higher than usual, and therefore extra annoying! 😅 Thank you so much! 😁
@TurovodSPB
@TurovodSPB 2 жыл бұрын
Cool! What about build automatically via github actions or gitlab jobs?
@alexielo
@alexielo Жыл бұрын
Thank you! My app kept crashing and was stuck on this error for ages, turns out I just needed to add Pillow as a requirment to get my MDDatePicker to work!
@gopi4815
@gopi4815 5 ай бұрын
You are great, Thank you so much!!!
@paulighofose5053
@paulighofose5053 Жыл бұрын
Hi Mariya, any chance you can do this with Termux running on the same Android device (compile). So, with Pydroid 3 for python, Termux for Linux, all running on an Android Tablet?
@proza1957
@proza1957 2 жыл бұрын
You are funny, keep up the good work.
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you Patrick! 😊
@darker2.0
@darker2.0 2 жыл бұрын
thanks you for your tutorial but i don't know how to get the adb 1.0.39 for windows! can you help me please?!
@moussa0803
@moussa0803 2 жыл бұрын
Thank Mariya, you're incredible
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much Moussa! 😊
@umuts-cut
@umuts-cut Жыл бұрын
@@PythonSimplified Hi! I wanted to appreicate your work you are amazing. Literally the best source I have found on the internet. But I keep getting this error, what should I do? Can you please help me? WARNING: Received a --sdk argument, but this argument is deprecated and does nothing. No setup.py/pyproject.toml used, copying full private data into .apk. Applying Java source code patches... Applying patch: src/patches/SDLActivity.java.patch I'm about to lose all the motivation I have. It just tires me a lot, not managing to do it
@Kennethlumor
@Kennethlumor 2 жыл бұрын
Madam thank you so much for your time and, sharing your knowledge with me
@Portal7_P7
@Portal7_P7 2 жыл бұрын
Buen vídeo
@druhalin1840
@druhalin1840 2 жыл бұрын
Hello! Your tutorial is really very good! BUT I found an error why this didn't work now, in Mai 2022. Thr module buildozer was updating, and with the latest version of buildozer (1.3.0) it print an error! So now you have to manually set up the version 1.2.0 of buildozer. So when you have to install the buildozer you have to write: pip3 install --user --upgrade buildozer==1.2.0 I found the solution by myself, it was a pain in my head but now it's work very well! Enjoy! 25 Mai 2022 - Worked!
@FauezeElieLucasolabi
@FauezeElieLucasolabi 2 жыл бұрын
Thank you very much helped me a lot, even not taming your language I was able to understand how to execute it in a practical way, I had to make some more normal adaptations. Brasil
@danielsalinas602
@danielsalinas602 2 жыл бұрын
Very useful information señorita
@flaviodasilva4185
@flaviodasilva4185 2 жыл бұрын
Thanks for the great tutorial. One problem though, when I click the X on the top right of the window, the app locks up. How do we end the app?
@mohitnarwani4821
@mohitnarwani4821 2 жыл бұрын
Hi!!! Thanks to you .....my apk is ready but do you know how to create option of in app purchase?
@someone-od2qi
@someone-od2qi 2 жыл бұрын
thank you for this video ,i need it :)
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much for joining the live chat! 😀 Please let me know if everything worked on your end! 😊
@someone-od2qi
@someone-od2qi 2 жыл бұрын
@@PythonSimplified oh finale it's work thank you thank you :)
@james.1993
@james.1993 2 жыл бұрын
where can I get my older version of adb like you had on the B2D folder? I don't have that from my python project.
@marie-pierneault1035
@marie-pierneault1035 2 ай бұрын
Did you manage to figure out how to get adb for your project, I have the same question at the moment? Thanks!
@prishasrivastava6169
@prishasrivastava6169 2 жыл бұрын
Hi, I have successfully created the APK and I tried opening it on my phone but it is not opening. It is showing loading with the kivy logo and closing. Please help me.
@NixTreffNixChef
@NixTreffNixChef Жыл бұрын
Greetings, i have a Xiaomi and run through your video with the downloaded B2D-App, but the app wont start as used to... How can i fix it or wich smartphone would be better?
@richardknipe2733
@richardknipe2733 Жыл бұрын
At 6:07 I am constantly getting the error of "python error could not find a version that satisfies the requirement buildozer" even though I used the latest adb files from the Internet. Any suggestions?
@yurialtunin9121
@yurialtunin9121 2 жыл бұрын
Здорово! Мария, вы молодец!
@BlackFlag_EndTimes
@BlackFlag_EndTimes 2 жыл бұрын
Waity waity . So excited
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you, super happy to hear that! 😁
@nalinkannan2691
@nalinkannan2691 2 жыл бұрын
hello ma'am..... my app just shows the loading screen and close, plz help me!!!!!!!!!!😥😥😥
@patilnitinnandkumar1962
@patilnitinnandkumar1962 2 жыл бұрын
My APK is not working it's open and close automatically. It's an weather app need solution please 😓
@wherethetacotakesus
@wherethetacotakesus Жыл бұрын
Thank you so much for your tutorial. I followed this to a T, but every time i try to open my app on my android device, it crashes. I've tried to run a logcat on Ubuntu but it cannot find my device, even though powershell sees it, do you have any suggestions?
Create a Python App with Dear PyGui - Graphic User Interface
22:39
Python Simplified
Рет қаралды 356 М.
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 376 М.
Тяжелые будни жены
00:46
К-Media
Рет қаралды 5 МЛН
Black Magic 🪄 by Petkit Pura Max #cat #cats
00:38
Sonyakisa8 TT
Рет қаралды 24 МЛН
СҰЛТАН СҮЛЕЙМАНДАР | bayGUYS
24:46
bayGUYS
Рет қаралды 767 М.
100😭🎉 #thankyou
00:28
はじめしゃちょー(hajime)
Рет қаралды 39 МЛН
Why Linux is better for (most) developers!
14:59
The Linux Experiment
Рет қаралды 459 М.
Convert GUI App to Real Program -  Python to exe to setup wizard
23:27
Python Simplified
Рет қаралды 471 М.
Android App Development in Python With Kivy
26:27
NeuralNine
Рет қаралды 269 М.
Deploying Your Kivy/Python App to Android with Buildozer
19:17
Erik Sandberg
Рет қаралды 145 М.
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Internet Made Coder
Рет қаралды 1,5 МЛН
Convert Tkinter Python App to Executable (.Exe) File [pyinstaller]
9:11
Code First with Hala
Рет қаралды 125 М.
Python Classes and Objects - OOP for Beginners
8:01
Python Simplified
Рет қаралды 528 М.
Carregando telefone com carregador cortado
1:01
Andcarli
Рет қаралды 2 МЛН
Mi primera placa con dios
0:12
Eyal mewing
Рет қаралды 393 М.