-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (40 loc) · 1.34 KB
/
build.gradle
File metadata and controls
44 lines (40 loc) · 1.34 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.31'
ext.anko_version = '0.10.8'
ext.rx_java_version = '2.2.6'
ext.rx_kotlin_version = '2.3.0'
ext.rx_Android_version = '2.1.0'
ext.rx_relay_version = '2.1.0'
ext.androidx_core = '1.2.0-alpha01'
ext.androidx_legacy_version = '1.0.0'
ext.androidx_appcompact = '1.1.0-alpha05'
ext.androidx_constraint_version = '2.0.0-beta1'
ext.androidx_room_version = '2.1.0-beta01'
ext.lifecycle_version = '2.2.0-alpha01'
ext.androidx_recyclerview_verions = '1.1.0-alpha05'
ext.androidx_cardview_version = '1.0.0'
ext.kodein_version = '6.1.0'
ext.text_espresso_core = '3.1.1'
ext.text_runner = '1.1.1'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}