Android-Password-Store/build-logic/automation-plugins/src/main/kotlin/crowdin/CrowdinExtension.kt
Harsh Shandilya fee7510496
Miscellaneous cleanups (#1934)
* build-logic: cleanups

* coroutine-utils-testing: cleanups

* coroutine-utils: cleanups

* crypto-common: cleanups

* crypto-pgpainless: cleanups

* format-common: cleanups
2022-06-04 09:11:52 +00:00

20 lines
469 B
Kotlin

/*
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
package crowdin
/** Extension for configuring [CrowdinDownloadPlugin] */
interface CrowdinExtension {
/** Configure the project name on Crowdin */
var projectName: String
/**
* Don't delete downloaded and extracted translation archives from build directory.
*
* Useful for debugging.
*/
var skipCleanup: Boolean
}