Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

33 lines
802 B
Kotlin

@file:Suppress("LongLine")
// As a suggestions from here: https://youtrack.jetbrains.com/issue/KTIJ-19369/False-positive-cant-be-called-in-this-context-by-implicit-receiver-with-plugins-in-Gradle-version-catalogs-as-a-TOML-file#focus=Comments-27-5860112.0-0
@Suppress(
"DSL_SCOPE_VIOLATION",
"MISSING_DEPENDENCY_CLASS",
"UNRESOLVED_REFERENCE_WRONG_RECEIVER",
"FUNCTION_CALL_EXPECTED"
)
plugins {
alias(libs.plugins.ksp.gradle.plugin)
}
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath(libs.android.gradle.plugin)
classpath(libs.kotlin.gradle.plugin)
}
}
allprojects {
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}