-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
49 lines (42 loc) · 1.2 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
buildscript {
ext.compile_sdk_version = 28
ext.application_id = 'com.lynnik.aroundme'
ext.min_sdk_version = 21
ext.target_sdk_version = 28
ext.gradle_version = '3.2.0'
ext.kotlin_version = '1.2.61'
ext.appcompat_version = '1.0.0'
ext.material_version = '1.0.0'
ext.lifecycle_version = "2.0.0"
ext.timber_version = '4.7.1'
ext.rx_java_version = '2.1.0'
ext.retrofit_version = '2.3.0'
ext.okhttp_version = '3.9.1'
ext.play_services_maps_version = '16.0.0'
ext.junit_version = '4.12'
ext.test_runner_version = '1.1.0-alpha4'
ext.test_espresso_version = '3.1.0-alpha4'
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'io.fabric.tools:gradle:1.25.4'
}
}
plugins {
id("io.gitlab.arturbosch.detekt").version("1.0.0.RC6-2")
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}