mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-20 13:50:12 +01:00
Even examples/config.py with default_config
This commit is contained in:
parent
96bcd1c77d
commit
91f36acaa6
@ -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,
|
||||
}
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user