Рет қаралды 736
In this video, we are going to turn our Kivy app into a real Android App. We'll compile the calculator app we built with Kivy, and we'll turn this to an Apk (Android Package) which allows us to download our app on our Android device. We'll be using Google Colab (A Linux enviornment) to compile because we'll be using a Python module called buildozer, and this is a program which allows us to turn our Python apps into Android Apps.
3 Ways To Convert Python App to Apk: towardsdatasci...
Ubuntu ISO File: releases.ubunt...
Ubuntu Installation Tutorial: • How to Install Ubuntu ...
-------------------------------------------------------------------------
Google Colab Commands:
!pip install buildozer
!pip install cython==0.29.19
!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
!buildozer android clean
-------------------------------------------------------------------------
Linux Commands:
sudo apt install python3-pip
pip3 install kivy
pip3 install buildozer
sudo apt update
sudo apt install -y git zip unzip openjdk-8-jdk python3-pip autoconf libtool pkg-config zlib1g-dev libncurses5-dev libncursesw5-dev libtinfo5 cmake libffi-dev libssl-dev
pip3 install Cython==0.29.19
export PATH=$PATH:~/.local/bin/
buildozer init
buildozer -v android debug
-----------------------------------------------
App and Source code: github.com/Fed...
SUBSCRIBE FOR MORE EASY TO FOLLOW TUTORIALS: / @bruvcode
Python Mobile App Tutorial Playlist - • How To Make Mobile App...
Python Advanced Tutorial Playlist - • Python Advanced Tutorials
Python Website Tutorial Playlist - • How To Make Mobile App...