From 569c0126767589acaf681cc4a2c9e72e9116e1b8 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Fri, 27 Sep 2019 11:10:54 +0200 Subject: [PATCH] Updates install instructions and troubleshooting - Python3 only, since this is now a p4a requirement - links to p4a troubleshooting documentation - fixes code block formatting on `Aidl` section --- docs/source/installation.rst | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 860a83d..465aaa3 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -1,14 +1,14 @@ Installation ============ -Buildozer itself doesn't depend on any library, and works on Python 2.7 and >= -3.3. Depending the platform you want to target, you might need more tools -installed. Buildozer tries to give you hints or tries to install few things for +Buildozer itself doesn't depend on any library Python >= 3.3. +Depending the platform you want to target, you might need more tools installed. +Buildozer tries to give you hints or tries to install few things for you, but it doesn't cover every situation. First, install the buildozer project with:: - pip install --upgrade buildozer + pip3 install --user --upgrade buildozer Targeting Android ----------------- @@ -43,11 +43,18 @@ Aidl not found, please install it. Buildozer didn't install a necessary package :: + ~/.buildozer/android/platform/android-sdk/tools/bin/sdkmanager "build-tools;29.0.0" Then press "y" then enter to accept the license. +python-for-android related errors +""""""""""""""""""""""""""""""""" +See the dedicated `p4a troubleshooting documentation +`_. + + Targeting IOS ~~~~~~~~~~~~~