2010-10-22 00:26:38 +02:00
|
|
|
|
2013-08-29 20:21:40 +02:00
|
|
|
# Copy this file to config.py, then amend the settings below according to
|
|
|
|
# your system configuration.
|
2010-10-22 00:26:38 +02:00
|
|
|
|
2013-08-29 20:21:40 +02:00
|
|
|
# Path to the Android SDK ($ANDROID_HOME)
|
2011-01-09 16:52:00 +01:00
|
|
|
sdk_path = "/path/to/android-sdk-linux_86"
|
2013-08-29 20:21:40 +02:00
|
|
|
|
|
|
|
# Path to the Android NDK ($ANDROID_NDK)
|
2013-10-17 15:29:52 +02:00
|
|
|
# Legacy toolchains are only needed by some apps
|
2013-09-17 20:24:25 +02:00
|
|
|
ndk_path = "/path/to/android-ndk-r9"
|
2011-01-08 22:07:58 +01:00
|
|
|
|
2013-08-08 12:55:48 +02:00
|
|
|
# Build tools version to be used
|
2013-11-13 15:54:38 +01:00
|
|
|
build_tools = "18.1.1"
|
2013-08-08 12:55:48 +02:00
|
|
|
|
2013-08-29 20:21:40 +02:00
|
|
|
# Path to Android Java SWT ($ANDROID_SWT)
|
2011-01-09 16:52:00 +01:00
|
|
|
javacc_path = "/usr/share/java"
|
|
|
|
|
2013-08-29 20:21:40 +02:00
|
|
|
# Command for running maven 3 (could be mvn, mvn3, or a full path)
|
2012-09-13 09:23:12 +02:00
|
|
|
mvn3 = "mvn3"
|
|
|
|
|
2013-08-29 20:21:40 +02:00
|
|
|
# Command for running Gradle
|
2013-08-08 12:55:48 +02:00
|
|
|
gradle = "gradle"
|
|
|
|
|
|
|
|
# Android gradle plugin version
|
2013-10-17 15:29:52 +02:00
|
|
|
# "0.5.+" -> gradle 1.7
|
|
|
|
# "0.6.+" -> gradle 1.8
|
|
|
|
gradle_plugin = "0.6.+"
|
2013-08-08 12:55:48 +02:00
|
|
|
|
2013-08-19 11:36:26 +02:00
|
|
|
# Max height and width (in pixels) for the icons in the repo
|
|
|
|
# This corresponds to 72x72 pixels, i.e. mdpi
|
|
|
|
icon_max_size = 72
|
|
|
|
|
2013-11-26 23:07:47 +01:00
|
|
|
# Set the maximum age (in days) of an index that a client should accept from
|
|
|
|
# this repo. Setting it to 0 or not setting it at all disables this
|
|
|
|
# functionality. If you do set this to a non-zero value, you need to ensure
|
|
|
|
# that your index is updated much more frequently than the specified interval.
|
|
|
|
# The same policy is applied to the archive repo, if there is one.
|
|
|
|
repo_maxage = 0
|
|
|
|
|
2013-04-23 21:15:49 +02:00
|
|
|
repo_url = "https://f-droid.org/repo"
|
|
|
|
repo_name = "F-Droid"
|
2010-12-17 13:31:04 +01:00
|
|
|
repo_icon = "fdroid-icon.png"
|
|
|
|
repo_description = """
|
2013-04-23 21:15:49 +02:00
|
|
|
The official repository of the F-Droid client. Applications in this repository
|
|
|
|
are either official binaries built by the original application developers, or
|
|
|
|
are binaries built from source by the admin of f-droid.org using the tools on
|
|
|
|
https://gitorious.org/f-droid.
|
2010-12-17 13:31:04 +01:00
|
|
|
"""
|
|
|
|
|
2013-05-09 21:09:17 +02:00
|
|
|
# As above, but for the archive repo.
|
|
|
|
# archive_older sets the number of versions kept in the main repo, with all
|
|
|
|
# older ones going to the archive. Set it to 0, and there will be no archive
|
|
|
|
# repository, and no need to define the other archive_ values.
|
|
|
|
archive_older = 3
|
|
|
|
archive_url = "https://f-droid.org/archive"
|
|
|
|
archive_name = "F-Droid Archive"
|
|
|
|
archive_icon = "fdroid-icon.png"
|
|
|
|
archive_description = """
|
|
|
|
The archive repository of the F-Droid client. This contains older versions
|
|
|
|
of applications from the main repository.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2011-01-29 10:32:21 +01:00
|
|
|
#The key (from the keystore defined below) to be used for signing the
|
2011-03-27 05:14:06 +02:00
|
|
|
#repository itself. Can be None for an unsigned repository.
|
2011-01-29 10:32:21 +01:00
|
|
|
repo_keyalias = None
|
|
|
|
|
2011-01-04 22:44:14 +01:00
|
|
|
#The keystore to use for release keys when building. This needs to be
|
|
|
|
#somewhere safe and secure, and backed up!
|
|
|
|
keystore = "/home/me/somewhere/my.keystore"
|
|
|
|
|
2011-04-06 20:55:01 +02:00
|
|
|
#The password for the keystore (at least 6 characters).
|
|
|
|
keystorepass = "password1"
|
2011-01-04 22:44:14 +01:00
|
|
|
|
2011-03-27 05:14:06 +02:00
|
|
|
#The password for keys - the same is used for each auto-generated key
|
|
|
|
#as well as for the repository key.
|
2011-04-06 20:55:01 +02:00
|
|
|
keypass = "password2"
|
2011-01-04 22:44:14 +01:00
|
|
|
|
2011-01-04 23:45:38 +01:00
|
|
|
#The distinguished name used for all keys.
|
2011-01-04 22:44:14 +01:00
|
|
|
keydname = "CN=Birdman, OU=Cell, O=Alcatraz, L=Alcatraz, S=California, C=US"
|
2011-01-04 23:45:38 +01:00
|
|
|
|
|
|
|
#Use this to override the auto-generated key aliases with specific ones
|
|
|
|
#for particular applications. Normally, just leave it empty.
|
|
|
|
keyaliases = {}
|
|
|
|
keyaliases['com.example.app'] = 'example'
|
2013-04-05 18:02:02 +02:00
|
|
|
#You can also force an app to use the same key alias as another one, using
|
|
|
|
#the @ prefix.
|
|
|
|
keyaliases['com.example.another.plugin'] = '@com.example.another'
|
2011-01-04 23:45:38 +01:00
|
|
|
|
2012-03-11 14:17:37 +01:00
|
|
|
#The ssh path to the server's public web root directory. This is used for
|
|
|
|
#uploading data, etc.
|
|
|
|
serverwebroot = 'user@example:/var/www/repo'
|
2011-01-04 22:44:14 +01:00
|
|
|
|
2012-08-22 18:24:33 +02:00
|
|
|
#Wiki details
|
2013-07-09 09:59:58 +02:00
|
|
|
wiki_protocol = "http"
|
2012-08-22 18:24:33 +02:00
|
|
|
wiki_server = "server"
|
|
|
|
wiki_path = "/wiki/"
|
|
|
|
wiki_user = "login"
|
|
|
|
wiki_password = "1234"
|
|
|
|
|
2012-08-31 19:17:38 +02:00
|
|
|
#Only set this to true when running a repository where you want to generate
|
|
|
|
#stats, and only then on the master build servers, not a development
|
|
|
|
#machine.
|
|
|
|
update_stats = False
|
|
|
|
|
2013-05-23 12:04:57 +02:00
|
|
|
#Use the following to push stats to a Carbon instance:
|
|
|
|
stats_to_carbon = False
|
|
|
|
carbon_host = '0.0.0.0'
|
|
|
|
carbon_port = 2003
|
|
|
|
|
2012-09-03 12:48:47 +02:00
|
|
|
|
|
|
|
#Set this to true to always use a build server. This saves specifying the
|
|
|
|
#--server option on dedicated secure build server hosts.
|
|
|
|
build_server_always = False
|
|
|
|
|