diff --git a/docs/INSTALL.md b/docs/INSTALL.md index fa7206137b..a53d9bb0c6 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -303,7 +303,12 @@ Install Android SDK and NDK: - In the left pane menu select "Appearance & Behavior > System Settings > Memory Settings". - Set "IDE max heap size" to 2048Mb or more (otherwise the Studio might get stuck on "Updating indexes" when opening the project). -Configure the repo with Android SDK and NDK paths: +Configure the repo with Android SDK and NDK paths. You can do it either by setting a global environment variable pointing at your Android SDK: +``` +ANDROID_HOME= +``` + +or by running the following script, that creates `android/local.properties` file with the line `sdk.dir=` in it: _Linux:_ ```bash diff --git a/tools/android/set_up_android.py b/tools/android/set_up_android.py index ed5dc34931..ba81ddca4c 100755 --- a/tools/android/set_up_android.py +++ b/tools/android/set_up_android.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 import os, sys, shutil, collections from optparse import OptionParser