mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-15 06:52:49 +01:00
18 lines
367 B
Plaintext
18 lines
367 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
|
|
implementation(androidxLibs.gradle)
|
|
implementation(kotlinLibs.gradle)
|
|
implementation(libs.detekt.gradlePlugin)
|
|
implementation(gradleApi())
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
}
|