-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
31 lines (29 loc) · 844 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = "1.5.31"
lifesycle_version = "2.4.0"
navigation_version = "2.3.5"
timber_version = "5.0.1"
room_version = "2.3.0"
joda_version = "2.10"
moshi_version = "1.9.3"
retrofit_version = "2.9.0"
}
repositories {
maven { url 'https://jitpack.io' }
maven { url "https://kotlin.bintray.com/kotlinx" }
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
}
}
plugins {
id 'org.jetbrains.kotlin.kapt' version '1.5.31'
}
task clean(type: Delete) {
delete rootProject.buildDir
}