mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Add NDK r10d, this time alongside r9b
Specified per-build with ndk=<version> defaulting to the oldest, r9b.
This commit is contained in:
parent
43092407a3
commit
f60f1bc59e
9 changed files with 130 additions and 64 deletions
|
@ -3,24 +3,27 @@
|
|||
# Copy this file to config.py, then amend the settings below according to
|
||||
# your system configuration.
|
||||
|
||||
# Override the path to the Android SDK, $ANDROID_HOME by default
|
||||
# sdk_path = "/path/to/android-sdk"
|
||||
# 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,
|
||||
'r10d': "$ANDROID_NDK"
|
||||
}
|
||||
|
||||
# Override the path to the Android NDK, $ANDROID_NDK by default
|
||||
# ndk_path = "/path/to/android-ndk"
|
||||
# Build tools version to be used
|
||||
# build_tools = "21.1.2"
|
||||
build_tools = "21.1.2"
|
||||
|
||||
# Command for running Ant
|
||||
# ant = "/path/to/ant"
|
||||
# Command or path to binary for running Ant
|
||||
ant = "ant"
|
||||
|
||||
# Command for running maven 3
|
||||
# mvn3 = "/path/to/mvn"
|
||||
# Command or path to binary for running maven 3
|
||||
mvn3 = "mvn"
|
||||
|
||||
# Command for running Gradle
|
||||
# gradle = "/path/to/gradle"
|
||||
# Command or path to binary for running Gradle
|
||||
gradle = "gradle"
|
||||
|
||||
# Set the maximum age (in days) of an index that a client should accept from
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue