2025-06-07 10:43:50 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2025 Meshtastic LLC
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2025-08-13 17:51:19 +00:00
|
|
|
import io.gitlab.arturbosch.detekt.Detekt
|
2025-06-07 10:43:50 +00:00
|
|
|
import java.io.FileInputStream
|
|
|
|
import java.util.Properties
|
|
|
|
|
2022-10-04 03:12:39 +00:00
|
|
|
plugins {
|
2025-02-25 00:42:37 +00:00
|
|
|
alias(libs.plugins.android.application)
|
|
|
|
alias(libs.plugins.kotlin.android)
|
|
|
|
alias(libs.plugins.compose)
|
|
|
|
alias(libs.plugins.kotlin.parcelize)
|
|
|
|
alias(libs.plugins.kotlin.serialization)
|
|
|
|
alias(libs.plugins.hilt)
|
|
|
|
alias(libs.plugins.protobuf)
|
|
|
|
alias(libs.plugins.devtools.ksp)
|
|
|
|
alias(libs.plugins.detekt)
|
2025-08-01 21:54:46 +00:00
|
|
|
alias(libs.plugins.datadog)
|
2025-08-26 22:00:32 +00:00
|
|
|
alias(libs.plugins.secrets)
|
2025-07-21 23:31:35 +00:00
|
|
|
alias(libs.plugins.spotless)
|
2025-09-08 23:31:53 +00:00
|
|
|
alias(libs.plugins.dokka)
|
2022-10-04 03:12:39 +00:00
|
|
|
}
|
2020-09-24 02:47:45 +00:00
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
val keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
val keystoreProperties = Properties()
|
2025-07-21 23:31:35 +00:00
|
|
|
|
2021-12-09 17:53:33 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
2025-06-07 10:43:50 +00:00
|
|
|
FileInputStream(keystorePropertiesFile).use { keystoreProperties.load(it) }
|
2021-12-09 17:53:33 +00:00
|
|
|
}
|
|
|
|
|
2025-09-09 01:52:34 +00:00
|
|
|
val gitVersionProvider = providers.of(GitVersionValueSource::class.java) {}
|
|
|
|
|
2020-01-20 23:53:22 +00:00
|
|
|
android {
|
2025-06-07 10:43:50 +00:00
|
|
|
namespace = "com.geeksville.mesh"
|
2023-08-27 09:38:36 +00:00
|
|
|
|
2020-07-20 19:07:55 +00:00
|
|
|
signingConfigs {
|
2025-06-07 10:43:50 +00:00
|
|
|
create("release") {
|
|
|
|
keyAlias = keystoreProperties["keyAlias"] as String?
|
|
|
|
keyPassword = keystoreProperties["keyPassword"] as String?
|
|
|
|
storeFile = keystoreProperties["storeFile"]?.let { file(it) }
|
|
|
|
storePassword = keystoreProperties["storePassword"] as String?
|
2020-07-20 19:07:55 +00:00
|
|
|
}
|
2021-12-09 17:53:33 +00:00
|
|
|
}
|
2025-06-07 10:43:50 +00:00
|
|
|
compileSdk = Configs.COMPILE_SDK
|
2020-01-20 23:53:22 +00:00
|
|
|
defaultConfig {
|
2025-06-07 10:43:50 +00:00
|
|
|
applicationId = Configs.APPLICATION_ID
|
2025-08-13 17:51:19 +00:00
|
|
|
minSdk = Configs.MIN_SDK
|
2025-06-07 10:43:50 +00:00
|
|
|
targetSdk = Configs.TARGET_SDK
|
2025-09-09 01:52:34 +00:00
|
|
|
// Prioritize ENV, then fallback to git commit count for versionCode
|
|
|
|
versionCode = (System.getenv("VERSION_CODE") ?: gitVersionProvider.get()).toInt()
|
2025-08-26 16:27:16 +00:00
|
|
|
versionName = System.getenv("VERSION_NAME") ?: Configs.VERSION_NAME_BASE
|
2025-06-07 10:43:50 +00:00
|
|
|
testInstrumentationRunner = "com.geeksville.mesh.TestRunner"
|
2025-06-04 00:58:21 +00:00
|
|
|
buildConfigField("String", "MIN_FW_VERSION", "\"${Configs.MIN_FW_VERSION}\"")
|
|
|
|
buildConfigField("String", "ABS_MIN_FW_VERSION", "\"${Configs.ABS_MIN_FW_VERSION}\"")
|
2021-01-30 06:44:55 +00:00
|
|
|
// per https://developer.android.com/studio/write/vector-asset-studio
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
2025-07-21 23:31:35 +00:00
|
|
|
// We have to list all translated languages here,
|
|
|
|
// because some of our libs have bogus languages that google play
|
2025-07-10 01:27:25 +00:00
|
|
|
// doesn't like and we need to strip them (gr)
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
|
|
androidResources.localeFilters.addAll(
|
|
|
|
listOf(
|
2025-07-21 23:31:35 +00:00
|
|
|
"bg",
|
|
|
|
"ca",
|
|
|
|
"cs",
|
|
|
|
"de",
|
|
|
|
"el",
|
|
|
|
"en",
|
|
|
|
"es",
|
|
|
|
"et",
|
|
|
|
"fi",
|
|
|
|
"fr",
|
|
|
|
"fr-rHT",
|
|
|
|
"ga",
|
|
|
|
"gl",
|
|
|
|
"hr",
|
|
|
|
"hu",
|
|
|
|
"is",
|
|
|
|
"it",
|
|
|
|
"iw",
|
|
|
|
"ja",
|
|
|
|
"ko",
|
|
|
|
"lt",
|
|
|
|
"nl",
|
|
|
|
"nb",
|
|
|
|
"pl",
|
|
|
|
"pt",
|
|
|
|
"pt-rBR",
|
|
|
|
"ro",
|
|
|
|
"ru",
|
|
|
|
"sk",
|
|
|
|
"sl",
|
|
|
|
"sq",
|
|
|
|
"sr",
|
|
|
|
"sv",
|
|
|
|
"tr",
|
|
|
|
"zh-rCN",
|
|
|
|
"zh-rTW",
|
|
|
|
"uk",
|
2025-07-23 15:38:03 +00:00
|
|
|
),
|
2025-07-10 01:27:25 +00:00
|
|
|
)
|
2025-07-21 23:31:35 +00:00
|
|
|
ndk { abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64") }
|
2020-01-20 23:53:22 +00:00
|
|
|
}
|
2025-09-04 20:17:21 +00:00
|
|
|
flavorDimensions += "default"
|
2023-01-19 14:24:42 +00:00
|
|
|
productFlavors {
|
2025-08-26 12:36:58 +00:00
|
|
|
// Read versionCode from defaultConfig after it's been potentially set by ENV or fallback
|
|
|
|
val resolvedVersionCode = defaultConfig.versionCode
|
|
|
|
val resolvedVersionName = defaultConfig.versionName
|
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
create("google") {
|
|
|
|
dimension = "default"
|
2025-09-04 20:17:21 +00:00
|
|
|
isDefault = true
|
2025-06-25 23:16:55 +00:00
|
|
|
// Enable Firebase Crashlytics for Google Play builds
|
2025-07-23 19:45:46 +00:00
|
|
|
apply(plugin = libs.plugins.google.services.get().pluginId)
|
|
|
|
apply(plugin = libs.plugins.firebase.crashlytics.get().pluginId)
|
2025-08-26 12:36:58 +00:00
|
|
|
versionName = "$resolvedVersionName ($resolvedVersionCode) google"
|
2023-01-19 14:24:42 +00:00
|
|
|
}
|
2025-09-04 20:17:21 +00:00
|
|
|
create("fdroid") {
|
|
|
|
dimension = "default"
|
|
|
|
dependenciesInfo { includeInApk = false }
|
|
|
|
versionName = "$resolvedVersionName ($resolvedVersionCode) fdroid"
|
|
|
|
}
|
2023-01-19 14:24:42 +00:00
|
|
|
}
|
2020-01-20 23:53:22 +00:00
|
|
|
buildTypes {
|
2025-08-04 20:27:45 +00:00
|
|
|
release {
|
2025-06-07 10:43:50 +00:00
|
|
|
if (keystoreProperties["storeFile"] != null) {
|
|
|
|
signingConfig = signingConfigs.named("release").get()
|
2021-12-09 17:53:33 +00:00
|
|
|
}
|
2025-06-07 10:43:50 +00:00
|
|
|
isMinifyEnabled = true
|
|
|
|
isShrinkResources = true
|
2025-07-23 19:45:46 +00:00
|
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
2020-01-20 23:53:22 +00:00
|
|
|
}
|
2025-08-04 20:27:45 +00:00
|
|
|
debug {
|
|
|
|
isDebuggable = true
|
|
|
|
isPseudoLocalesEnabled = true
|
|
|
|
}
|
2023-10-08 22:06:13 +00:00
|
|
|
}
|
2025-07-21 23:31:35 +00:00
|
|
|
bundle { language { enableSplit = false } }
|
2020-01-22 03:16:03 +00:00
|
|
|
buildFeatures {
|
2025-06-07 10:43:50 +00:00
|
|
|
compose = true
|
|
|
|
aidl = true
|
|
|
|
buildConfig = true
|
2022-11-02 18:34:56 +00:00
|
|
|
}
|
2022-02-01 01:01:33 +00:00
|
|
|
lint {
|
2025-06-07 10:43:50 +00:00
|
|
|
abortOnError = false
|
|
|
|
disable.add("MissingTranslation")
|
2020-02-10 15:40:45 +00:00
|
|
|
}
|
2024-08-04 14:40:33 +00:00
|
|
|
sourceSets {
|
|
|
|
// Adds exported schema location as test app assets.
|
2025-06-07 10:43:50 +00:00
|
|
|
named("androidTest") { assets.srcDirs(files("$projectDir/schemas")) }
|
2024-08-04 14:40:33 +00:00
|
|
|
}
|
2020-01-20 23:53:22 +00:00
|
|
|
}
|
|
|
|
|
2025-06-25 18:23:18 +00:00
|
|
|
kotlin {
|
|
|
|
compilerOptions {
|
2025-06-26 00:18:59 +00:00
|
|
|
jvmToolchain(21)
|
2025-06-25 18:23:18 +00:00
|
|
|
freeCompilerArgs.addAll(
|
|
|
|
"-opt-in=kotlin.RequiresOptIn",
|
|
|
|
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
|
|
|
"-Xcontext-receivers",
|
2025-07-21 23:31:35 +00:00
|
|
|
"-Xannotation-default-target=param-property",
|
2025-06-25 18:23:18 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-08-01 21:54:46 +00:00
|
|
|
secrets {
|
|
|
|
defaultPropertiesFileName = "secrets.defaults.properties"
|
|
|
|
propertiesFileName = "secrets.properties"
|
|
|
|
}
|
|
|
|
|
|
|
|
datadog {
|
2025-08-28 03:01:30 +00:00
|
|
|
// if (!gradle.startParameter.taskNames.any { it.contains("fdroid", ignoreCase = true) }) {
|
|
|
|
// composeInstrumentation = InstrumentationMode.AUTO
|
|
|
|
// }
|
2025-08-01 21:54:46 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 02:32:21 +00:00
|
|
|
// per protobuf-gradle-plugin docs, this is recommended for android
|
|
|
|
protobuf {
|
2025-07-23 19:45:46 +00:00
|
|
|
protoc { artifact = libs.protobuf.protoc.get().toString() }
|
2020-01-23 02:32:21 +00:00
|
|
|
generateProtoTasks {
|
2025-06-07 10:43:50 +00:00
|
|
|
all().forEach { task ->
|
2020-01-23 02:32:21 +00:00
|
|
|
task.builtins {
|
2025-06-07 10:43:50 +00:00
|
|
|
create("java") {}
|
|
|
|
create("kotlin") {}
|
2020-01-23 02:32:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-10 20:19:23 +00:00
|
|
|
// workaround for https://github.com/google/ksp/issues/1590
|
|
|
|
androidComponents {
|
2025-06-07 10:43:50 +00:00
|
|
|
onVariants(selector().all()) { variant ->
|
|
|
|
project.afterEvaluate {
|
2025-08-01 21:54:46 +00:00
|
|
|
val variantNameCapped = variant.name.replaceFirstChar { it.uppercase() }
|
|
|
|
tasks.named("ksp${variantNameCapped}Kotlin") { dependsOn("generate${variantNameCapped}Proto") }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onVariants(selector().withBuildType("release")) { variant ->
|
|
|
|
if (variant.flavorName == "google") {
|
|
|
|
val variantNameCapped = variant.name.replaceFirstChar { it.uppercase() }
|
|
|
|
val minifyTaskName = "minify${variantNameCapped}WithR8"
|
|
|
|
val uploadTaskName = "uploadMapping$variantNameCapped"
|
|
|
|
if (project.tasks.findByName(uploadTaskName) != null && project.tasks.findByName(minifyTaskName) != null) {
|
|
|
|
tasks.named(minifyTaskName).configure { finalizedBy(uploadTaskName) }
|
|
|
|
}
|
2024-01-10 20:19:23 +00:00
|
|
|
}
|
2025-06-07 10:43:50 +00:00
|
|
|
}
|
2024-01-10 20:19:23 +00:00
|
|
|
}
|
|
|
|
|
2025-09-09 01:52:34 +00:00
|
|
|
project.afterEvaluate { logger.lifecycle("Version code is set to: ${android.defaultConfig.versionCode}") }
|
|
|
|
|
2020-01-20 23:53:22 +00:00
|
|
|
dependencies {
|
2025-06-07 10:43:50 +00:00
|
|
|
implementation(project(":network"))
|
|
|
|
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
|
2025-02-25 00:42:37 +00:00
|
|
|
|
|
|
|
// Bundles
|
|
|
|
implementation(libs.bundles.androidx)
|
|
|
|
implementation(libs.bundles.ui)
|
2025-07-21 20:34:13 +00:00
|
|
|
implementation(libs.bundles.markdown)
|
2025-02-25 00:42:37 +00:00
|
|
|
debugImplementation(libs.bundles.ui.tooling)
|
2025-06-13 02:34:01 +00:00
|
|
|
implementation(libs.bundles.adaptive)
|
2025-02-25 00:42:37 +00:00
|
|
|
implementation(libs.bundles.lifecycle)
|
|
|
|
implementation(libs.bundles.navigation)
|
2025-09-05 17:44:54 +00:00
|
|
|
implementation(libs.bundles.navigation3)
|
2025-02-25 00:42:37 +00:00
|
|
|
implementation(libs.bundles.coroutines)
|
|
|
|
implementation(libs.bundles.datastore)
|
|
|
|
implementation(libs.bundles.room)
|
|
|
|
implementation(libs.bundles.hilt)
|
|
|
|
implementation(libs.bundles.protobuf)
|
2025-04-27 00:37:49 +00:00
|
|
|
implementation(libs.bundles.coil)
|
2025-05-22 13:30:08 +00:00
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
// OSM
|
2025-08-13 17:51:19 +00:00
|
|
|
"fdroidImplementation"(libs.bundles.osm)
|
|
|
|
"fdroidImplementation"(libs.osmdroid.geopackage) { exclude(group = "com.j256.ormlite") }
|
|
|
|
|
|
|
|
"googleImplementation"(libs.bundles.maps.compose)
|
2025-02-25 00:42:37 +00:00
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
// ZXing
|
|
|
|
implementation(libs.zxing.android.embedded) { isTransitive = false }
|
|
|
|
implementation(libs.zxing.core)
|
2025-02-25 00:42:37 +00:00
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
// Individual dependencies
|
|
|
|
"googleImplementation"(libs.awesome.app.rating)
|
2025-02-25 00:42:37 +00:00
|
|
|
implementation(libs.core.splashscreen)
|
|
|
|
implementation(libs.emoji2.emojipicker)
|
|
|
|
implementation(libs.kotlinx.collections.immutable)
|
|
|
|
implementation(libs.kotlinx.serialization.json)
|
|
|
|
implementation(libs.org.eclipse.paho.client.mqttv3)
|
|
|
|
implementation(libs.streamsupport.minifuture)
|
|
|
|
implementation(libs.usb.serial.android)
|
|
|
|
implementation(libs.work.runtime.ktx)
|
|
|
|
implementation(libs.core.location.altitude)
|
2025-07-29 14:42:36 +00:00
|
|
|
implementation(libs.accompanist.permissions)
|
2025-08-01 21:54:46 +00:00
|
|
|
implementation(libs.timber)
|
2025-02-25 00:42:37 +00:00
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
// Compose BOM
|
2025-02-25 00:42:37 +00:00
|
|
|
implementation(platform(libs.compose.bom))
|
|
|
|
androidTestImplementation(platform(libs.compose.bom))
|
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
// Firebase BOM
|
|
|
|
"googleImplementation"(platform(libs.firebase.bom))
|
|
|
|
"googleImplementation"(libs.bundles.firebase)
|
2025-08-01 21:54:46 +00:00
|
|
|
"googleImplementation"(libs.bundles.datadog)
|
2025-02-25 00:42:37 +00:00
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
// ksp
|
2025-02-25 00:42:37 +00:00
|
|
|
ksp(libs.room.compiler)
|
|
|
|
ksp(libs.hilt.compiler)
|
|
|
|
kspAndroidTest(libs.hilt.compiler)
|
|
|
|
|
2025-06-07 10:43:50 +00:00
|
|
|
// Testing
|
2025-02-25 00:42:37 +00:00
|
|
|
testImplementation(libs.bundles.testing)
|
|
|
|
debugImplementation(libs.bundles.testing.android.manifest)
|
|
|
|
androidTestImplementation(libs.bundles.testing.android)
|
|
|
|
androidTestImplementation(libs.bundles.testing.hilt)
|
|
|
|
androidTestImplementation(libs.bundles.testing.navigation)
|
|
|
|
androidTestImplementation(libs.bundles.testing.room)
|
|
|
|
|
|
|
|
detektPlugins(libs.detekt.formatting)
|
2020-01-20 23:53:22 +00:00
|
|
|
}
|
2022-02-08 21:50:21 +00:00
|
|
|
|
2023-09-05 09:21:08 +00:00
|
|
|
ksp {
|
2025-07-21 23:31:35 +00:00
|
|
|
// arg("room.generateKotlin", "true")
|
2023-09-05 09:21:08 +00:00
|
|
|
arg("room.schemaLocation", "$projectDir/schemas")
|
2022-04-08 22:37:53 +00:00
|
|
|
}
|
2022-08-10 16:12:49 +00:00
|
|
|
|
2024-07-03 02:01:51 +00:00
|
|
|
detekt {
|
|
|
|
config.setFrom("../config/detekt/detekt.yml")
|
|
|
|
baseline = file("../config/detekt/detekt-baseline.xml")
|
2025-08-13 17:51:19 +00:00
|
|
|
source.setFrom(files("src/main/java", "src/google/java", "src/fdroid/java"))
|
|
|
|
parallel = true
|
|
|
|
}
|
|
|
|
|
|
|
|
secrets {
|
|
|
|
propertiesFileName = "secrets.properties"
|
|
|
|
defaultPropertiesFileName = "secrets.defaults.properties"
|
2024-09-21 01:05:51 +00:00
|
|
|
}
|
2025-06-26 00:18:59 +00:00
|
|
|
|
2025-08-01 21:54:46 +00:00
|
|
|
val googleServiceKeywords = listOf("crashlytics", "google", "datadog")
|
2025-07-21 23:31:35 +00:00
|
|
|
|
2025-06-26 00:18:59 +00:00
|
|
|
tasks.configureEach {
|
2025-07-23 19:45:46 +00:00
|
|
|
if (
|
|
|
|
googleServiceKeywords.any { name.contains(it, ignoreCase = true) } && name.contains("fdroid", ignoreCase = true)
|
2025-06-26 00:18:59 +00:00
|
|
|
) {
|
2025-06-27 21:57:25 +00:00
|
|
|
project.logger.lifecycle("Disabling task for F-Droid: $name")
|
2025-06-26 00:18:59 +00:00
|
|
|
enabled = false
|
|
|
|
}
|
|
|
|
}
|
2025-07-21 23:31:35 +00:00
|
|
|
|
2025-08-13 17:51:19 +00:00
|
|
|
tasks.withType<Detekt> {
|
|
|
|
reports {
|
|
|
|
xml.required = true
|
|
|
|
xml.outputLocation = file("build/reports/detekt/detekt.xml")
|
|
|
|
html.required = true
|
|
|
|
html.outputLocation = file("build/reports/detekt/detekt.html")
|
|
|
|
sarif.required = true
|
|
|
|
sarif.outputLocation = file("build/reports/detekt/detekt.sarif")
|
|
|
|
md.required = true
|
|
|
|
md.outputLocation = file("build/reports/detekt/detekt.md")
|
|
|
|
}
|
|
|
|
debug = true
|
|
|
|
include("**/*.kt")
|
|
|
|
include("**/*.kts")
|
|
|
|
}
|
|
|
|
|
2025-07-21 23:31:35 +00:00
|
|
|
spotless {
|
|
|
|
ratchetFrom("origin/main")
|
|
|
|
kotlin {
|
|
|
|
target("src/*/kotlin/**/*.kt", "src/*/java/**/*.kt")
|
|
|
|
targetExclude("**/build/**/*.kt")
|
2025-07-23 19:45:46 +00:00
|
|
|
ktfmt().kotlinlangStyle().configure { it.setMaxWidth(120) }
|
2025-07-23 15:38:03 +00:00
|
|
|
ktlint("1.7.1").setEditorConfigPath("../config/spotless/.editorconfig")
|
|
|
|
licenseHeaderFile(rootProject.file("config/spotless/copyright.txt"))
|
2025-07-21 23:31:35 +00:00
|
|
|
}
|
|
|
|
kotlinGradle {
|
|
|
|
target("**/*.gradle.kts")
|
2025-07-23 19:45:46 +00:00
|
|
|
ktfmt().kotlinlangStyle().configure { it.setMaxWidth(120) }
|
2025-07-23 15:38:03 +00:00
|
|
|
ktlint("1.7.1").setEditorConfigPath("../config/spotless/.editorconfig")
|
2025-07-21 23:31:35 +00:00
|
|
|
}
|
|
|
|
}
|
2025-09-08 23:31:53 +00:00
|
|
|
|
|
|
|
tasks.withType<org.jetbrains.dokka.gradle.DokkaTask>().configureEach {
|
|
|
|
moduleName.set("Meshtastic App")
|
|
|
|
outputDirectory.set(file("build/dokka"))
|
|
|
|
}
|