Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit a5d7ee87 authored by Wolf-Martell Montwé's avatar Wolf-Martell Montwé Committed by GitHub
Browse files

Merge pull request #8149 from thunderbird/thunderbird_signing_build_option

Add property to select which signing key to use for Thunderbird
parents 36b0121c 1f033e56
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -80,9 +80,11 @@ android {
    }

    signingConfigs {
        createSigningConfig(project, SigningType.TB_RELEASE)
        createSigningConfig(project, SigningType.TB_BETA)
        createSigningConfig(project, SigningType.TB_DAILY)
        val useUploadKey = properties.getOrDefault("tb.useUploadKey", "true") == "true"

        createSigningConfig(project, SigningType.TB_RELEASE, isUpload = useUploadKey)
        createSigningConfig(project, SigningType.TB_BETA, isUpload = useUploadKey)
        createSigningConfig(project, SigningType.TB_DAILY, isUpload = useUploadKey)
    }

    buildTypes {