Source code
Revision control
Copy as Markdown
Other Tools
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
gradle.configureMavenRepositories(delegate)
}
dependencies {
classpath libs.android.gradle.plugin
classpath libs.kotlin.gradle.plugin
classpath libs.androidx.benchmark.gradle
classpath libs.androidx.navigation.safeargs
classpath libs.mozilla.glean.gradle.plugin
classpath libs.osslicenses.plugin
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id "mozac.ConfigPlugin"
alias(libs.plugins.dependency.analysis)
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.ksp)
}
mozilla {
ktlintSourcePaths = ["app/src/**/*.kt", "!**/build/**/*.kt"]
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}
dependencyAnalysis {
structure {
bundle("leakcanary") {
includeGroup("com.squareup.leakcanary")
}
bundle("mockk") {
includeGroup("io.mockk")
}
//ignoreKtx(true)
}
issues {
all {
onAny {
// Fail the run if any issues are found (default = 'warn')
//severity('fail')
}
}
}
}
tasks.register("listRepositories") {
def reposData = project.provider {
project.repositories.collect { repo ->
[name: repo.name, url: repo.url.toString()]
}
}
doLast {
println "Repositories:"
reposData.get().each { println "Name: " + it.name + "; url: " + it.url }
}
}