Steps to set up app packaging for Android

1. Download Ubuntu (64) Image (*.iso)
2. Install VMware Workstation
3. Create Ubuntu boot by pointing VMware to location of *.iso
4. Install python2.7 with sudo apt-get install idle
5. Make a dir for python projects. I called mine “pyProjs”
6. Make a subdir for each project. I called my first one “proj1”
7. When getting ready for buildozer begin with
    sudo apt-get install python-pip
    sudo apt-get install git
    git clone https://github.com/kivy/buildozer.git
    cd buildozer
    sudo python2.7 setup.py install
    sudo apt-get install cython
    cd pyProjs
    cd proj1

    sudo apt-get install zlib1g-dev
    sudo apt-get install openjdk-6-jre-headless
    sudo apt-get update
    java –version
    sudo apt-get install default-jdk
    After this command Ubuntu will install, Apache ANT, SDK, and Android Native NDK
    when you attempt “buildozer android debug deploy run”

8. If you have not already done so
    cd Desktop
    cd pyproj

    buildozer init
    buildozer android debug deploy run