-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (38 loc) · 909 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
37
38
39
40
41
42
43
44
45
46
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileSdk = 29
targetSdk = 29
minSdk = 21
versionCode = 1
versionName = '0.1.0-alpha01'
koin = '2.0.1'
kotlinVersion = '1.3.41'
mockk = '1.9.3'
junit = '4.12'
runner = '1.2.0'
espresso = '3.2.0'
coroutinesCore = '1.2.2'
coroutinesAndroid = '1.2.2'
timber = '4.7.1'
}
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete buildDir
}