-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
62 lines (58 loc) · 2.11 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
58
59
60
61
62
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
ext.versions = [
compileSdk : 28,
minSdk : 21,
targetSdk : 28,
appcompat : '1.1.0-rc01',
androidx : '1.2.0-alpha03',
junit : "4.12",
runner : "1.2.0",
espresso_core : "3.2.0",
kotlin_version : '1.3.50',
lifecycle_version : '2.2.0-alpha03',
nav_version : '2.2.0-alpha01',
retrofit_version : '2.5.0',
room_version : '2.2.0-alpha02',
card_view : '1.0.0',
gson_version : '2.8.5',
logging_interceptor: '3.12.0',
coroutine : '1.3.0-RC',
paging_version : "2.1.0",
preference : "1.1.0-rc01",
koin_version : '2.0.1',
glide : '4.9.0',
google_material : '1.1.0-alpha09',
constraint_layout : '2.0.0-beta1',
circle_imageview : '3.0.0',
recyclerview : "1.1.0-beta03",
ssp_sdp : "1.0.6",
rxjava_version : '2.1.1'
]
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin_version}"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:${versions.nav_version}"
classpath 'com.google.gms:google-services:4.3.1'
classpath 'io.fabric.tools:gradle:1.31.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}