chiark / gitweb /
show commented out examples for setting sdk_path and ndk_paths
authorHans-Christoph Steiner <hans@eds.org>
Fri, 24 Jul 2015 23:27:45 +0000 (16:27 -0700)
committerHans-Christoph Steiner <hans@eds.org>
Fri, 31 Jul 2015 22:38:40 +0000 (00:38 +0200)
Instead of just mirroring the defaults in the example config.py, show a
useful example of how they might be set.

examples/config.py

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