-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
39 lines (33 loc) · 1.15 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.github.ben-manes.versions") version "0.28.0"
}
buildscript {
repositories {
google()
jcenter()
maven("https://plugins.gradle.org/m2/")
maven("https://maven.fabric.io/public")
}
dependencies {
classpath("com.android.tools.build:gradle:4.0.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("org.koin:koin-gradle-plugin:${Versions.koin}")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.navigation}")
classpath("org.jlleitschuh.gradle:ktlint-gradle:${Versions.ktlintGradle}")
classpath("com.google.gms:google-services:4.3.3")
classpath("io.fabric.tools:gradle:1.31.2")
}
}
allprojects {
repositories {
google()
jcenter()
maven(url = "http://dl.bintray.com/sofakingforever/libraries")
maven(url = "https://jitpack.io")
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}
apply(plugin = "org.jlleitschuh.gradle.ktlint")