1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-20 13:50:12 +01:00

show commented out examples for setting sdk_path and ndk_paths

Instead of just mirroring the defaults in the example config.py, show a
useful example of how they might be set.
This commit is contained in:
Hans-Christoph Steiner 2015-07-24 16:27:45 -07:00
parent b8a3bce430
commit 316d71d46c

View File

@ -3,16 +3,17 @@
# Copy this file to config.py, then amend the settings below according to # Copy this file to config.py, then amend the settings below according to
# your system configuration. # your system configuration.
# Path to the Android SDK # Custom path to the Android SDK, defaults to $ANDROID_HOME
sdk_path = "$ANDROID_HOME" # sdk_path = "/opt/android-sdk"
# Path to various versions of the Android NDK # Custom paths to various versions of the Android NDK, defaults to 'r10e' set
# Most users will have the latest at $ANDROID_NDK, which is used by default # to $ANDROID_NDK. Most users will have the latest at $ANDROID_NDK, which is
# If a version is missing or assigned to None, it is assumed not installed # used by default. If a version is missing or assigned to None, it is assumed
ndk_paths = { # not installed.
'r9b': None, # ndk_paths = {
'r10e': "$ANDROID_NDK" # 'r9b': "/opt/android-ndk-r9b",
} # 'r10e': "/opt/android-ndk"
# }
# Build tools version to be used # Build tools version to be used
build_tools = "22.0.1" build_tools = "22.0.1"