-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathbuild.gradle
41 lines (39 loc) · 1.27 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
buildscript {
ext.compile_sdk_version = 28
ext.min_sdk_version = 21
ext.target_sdk_version = 28
ext.gradle_build_tools_version = "3.2.1"
ext.kotlin_version = '1.2.71'
ext.androidx_version = '1.0.0'
ext.constraintlayout_version = "2.0.0-alpha2"
ext.retrofit_version = "2.4.0"
ext.lifecycle_version = "2.0.0"
ext.room_version = "2.1.0-alpha01"
ext.navigation_version = "1.0.0-alpha06"
ext.work_version = "1.0.0-alpha10"
ext.dagger_version = '2.16'
ext.oss_licenses_plugin_version = "0.9.3"
ext.play_services_oss_licenses_version = "16.0.1"
ext.test_junit_version = "4.12"
ext.test_runner_version = "1.1.0-alpha4"
ext.test_espresso_version = "3.1.0-alpha4"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_build_tools_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
classpath "com.google.android.gms:oss-licenses-plugin:$oss_licenses_plugin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}