mirror of https://github.com/iSoron/uhabits.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
885 B
26 lines
885 B
plugins {
|
|
val kotlinVersion = "1.5.0"
|
|
id("com.android.application") version ("4.1.0") apply (false)
|
|
id("org.jetbrains.kotlin.android") version kotlinVersion apply (false)
|
|
id("org.jetbrains.kotlin.kapt") version kotlinVersion apply (false)
|
|
id("org.jetbrains.kotlin.android.extensions") version kotlinVersion apply (false)
|
|
id("org.jetbrains.kotlin.multiplatform") version kotlinVersion apply (false)
|
|
id("org.jlleitschuh.gradle.ktlint") version "10.0.0"
|
|
}
|
|
|
|
apply {
|
|
from("translators.gradle.kts")
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven(url = "https://plugins.gradle.org/m2/")
|
|
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
|
|
maven(url = "https://kotlin.bintray.com/ktor")
|
|
maven(url = "https://kotlin.bintray.com/kotlin-js-wrappers")
|
|
}
|
|
}
|