#!/usr/bin/env python3 sdk_path = "{{ fdroid_android_dir }}/android-sdk-linux" build_tools = "30.0.3" repo_url = "https://fdroid.cisti.org/repo" repo_name = "Cisti.org" repo_icon = "cisti.png" repo_description = """ Questo archivio contiene applicazioni scaricate dal play store di google su richiesta degli utenti di cisti.org """ # `fdroid update` will create a link to the current version of a given app. # This provides a static path to the current APK. To disable the creation of # this link, uncomment this: make_current_version_link = False # The key (from the keystore defined below) to be used for signing the # repository itself. This is the same name you would give to keytool or # jarsigner using -alias. (Not needed in an unsigned repository). repo_keyalias = "cisti" keystore = "cisti.keystore" # The password for the keystore (at least 6 characters). If this password is # different than the keypass below, it can be OK to store the password in this # file for real use. But in general, sensitive passwords should not be stored # in text files! keystorepass = "{{ fdroid_keystore_pass }}" # The password for keys - the same is used for each auto-generated key as well # as for the repository key. You should not normally store this password in a # file since it is a sensitive password. keypass = "{{ fdroid_keystore_pass }}" # The distinguished name used for all keys. keydname = "CN=cisti, OU=Unknown, O=cisti.org, L=Unknown, ST=Unknown, C=Unknown"