-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (24 loc) · 730 Bytes
/
build.gradle
File metadata and controls
28 lines (24 loc) · 730 Bytes
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
buildscript {
apply from: './dependencies.gradle'
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:${versions.gradlePlugin}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "com.google.gms:google-services:${versions.googleServices}"
classpath "com.google.firebase:firebase-crashlytics-gradle:${versions.crashlyticsPlugin}"
classpath "com.diffplug.spotless:spotless-plugin-gradle:${versions.spotlessPlugin}"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}