generated from bmc08gt/kotlin-android-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
36 lines (33 loc) · 855 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
31
32
33
34
35
36
buildscript {
apply from: 'dependencies.gradle'
apply from: 'app-versions.gradle'
apply from: 'gradle/tasks.gradle'
ext {
kotlin_version = '1.3.61'
}
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath deps.plugins.android_build_tools
classpath deps.plugins.google_services
classpath deps.plugins.kotlin
classpath deps.plugins.versions
classpath deps.plugins.androidx_navigation_safe_args
classpath deps.kotlin.plugin
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}