-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.gradle
30 lines (29 loc) · 905 Bytes
/
build.gradle
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: "com.github.ben-manes.versions"
apply plugin: "org.jlleitschuh.gradle.ktlint"
buildscript {
apply from: 'versions.gradle'
addRepos(repositories)
dependencies {
classpath deps.gradle.build
classpath deps.kotlin.plugin
classpath deps.google.services
classpath deps.fabric.tools
classpath deps.navigation.safe
classpath deps.gradle.version_update
classpath deps.firebase.plugin
classpath deps.gradle.ktlint
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
repositories {
google()
mavenCentral()
}
}
allprojects {
addRepos(repositories)
}
task clean(type: Delete) {
delete rootProject.buildDir
}