-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (53 loc) · 1.66 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.4.0'
version_core = '1.3.1'
version_appcompat = '1.2.0'
version_constraintlayout= '2.0.0-rc1'
version_recyclerview = '1.2.0-alpha05'
version_navigation_component = '1.0.0'
version_material = '1.3.0-alpha02'
version_swiperefresh = "1.1.0"
version_sdp_android = '1.0.6'
version_lifecycle_extensions = '2.2.0'
version_moshi = '1.11.0'
version_gson = '2.8.5'
version_retrofit = '2.9.0'
version_glide = "4.11.0"
version_kotlin_coroutines_adapter='0.9.2'
version_okhttp3_version = '4.9.0'
version_logging_interceptor = '4.9.0'
version_kotlin_coroutines = "1.3.9"
// version_room = '2.2.5'
version_room = '2.3.0-alpha03'
version_pagingVersion = '3.0.0-alpha07'
}
repositories {
google()
jcenter()
maven {
url "https://maven.google.com"
}
maven { url "https://dl.bintray.com/windsekirun/maven/" }
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.2.1"
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://maven.google.com"
}
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}