pybrapp icon indicating copy to clipboard operation
pybrapp copied to clipboard

Python brasil kivy app concept - WIP

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