1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Even examples/config.py with default_config

This commit is contained in:
Daniel Martí 2015-09-01 15:30:41 -07:00
parent 96bcd1c77d
commit 91f36acaa6
2 changed files with 10 additions and 10 deletions

View File

@ -11,12 +11,12 @@
# 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",
# 'r9b': None,
# 'r10e': "$ANDROID_NDK",
# }
# Build tools version to be used
build_tools = "22.0.1"
build_tools = "23.0.0"
# Command or path to binary for running Ant
ant = "ant"
@ -214,13 +214,13 @@ carbon_port = 2003
build_server_always = False
# By default, fdroid will use YAML and the custom .txt metadata formats. It
# is also possible to have metadata in JSON and XML. You can enable your
# preferred formats by setting them in a list:
# accepted_formats = ['json', 'txt', 'xml', 'yaml']
# is also possible to have metadata in JSON and XML by adding 'json' and
# 'xml'.
# accepted_formats = ['txt', 'yaml']
# Limit in number of characters that fields can take up
# Only the fields listed here are supported, defaults shown
char_limits = {
'Summary': 50,
'Description': 1500,
'Summary': 80,
'Description': 4000,
}

View File

@ -53,7 +53,7 @@ default_config = {
'sdk_path': "$ANDROID_HOME",
'ndk_paths': {
'r9b': None,
'r10e': "$ANDROID_NDK"
'r10e': "$ANDROID_NDK",
},
'build_tools': "23.0.0",
'ant': "ant",
@ -75,7 +75,7 @@ default_config = {
'smartcardoptions': [],
'char_limits': {
'Summary': 80,
'Description': 4000
'Description': 4000,
},
'keyaliases': {},
'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",