-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
53 lines (40 loc) · 1.35 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
//SDK & TOOLS
COMPILE_SDK_VERSION = 28
MIN_SDK_VERSION = 21
TARGET_SDK_VERSION = 28
//Gradle & Kotlin
GRADLE_VERSION = '3.4.0-alpha02'
KOTLIN_VERSION = '1.3.0'
KTX_VERSION = '1.0.0'
//ANDROID LIBS
SUPPORT_LIBRARY_VERSION = '1.0.0'
CONSTRAINT_LAYOUT_VERSION = '2.0.0-alpha2'
NAVIGATION_VERSION = '1.0.0-alpha07'
LIFE_CYCLE_VERSION = '2.0.0'
//DI
DAGGER_VERSION = '2.19'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$GRADLE_VERSION"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
//Temporary fix for Dagger > 2.16 --> Followup -> https://issuetracker.google.com/issues/115738511
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02'
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$NAVIGATION_VERSION"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}