Skip to content
This repository has been archived by the owner on Feb 20, 2022. It is now read-only.

ellisonleao/pybrapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Brasil Kivy App

Python Brasil Mobile App powered by Kivy

Screenshots

Initial screen Menu Schedule

Installing and running

  1. Clone repo
git clone https://github.com/ellisonleao/pybrapp.git
  1. Install dependencies (use your prefered method for virtual environments)
$ cd pybrapp

# first install Cython
$ pip install -U Cython

# install remanining dependencies
$ pip install -r requirements.txt

Disclaimer: This version is also installing pygame as the window provider. You can change it to SDL by following these steps

  1. Running
$ make run

Building apk

Note: buildozer does not works on virtual environments so you will need to install it on your system.

  1. Install Cython 0.25.2
$ pip install Cython==0.25.2
  1. Install buildozer
$ pip install buildozer
  1. Build apk

    • for debug
    $ make apk
    
    • for release
    $ make apk_release