-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
60 lines (50 loc) · 1.53 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Android gradle
ext.android_gradle_version = '3.3.1'
// Kotlin
ext.kotlin_version = '1.3.21'
ext.coroutine_version = '1.0.0'
// Android
ext.compile_sdk_version = 28
ext.min_sdk_version = 16
ext.version_code = 1
ext.version_name = '1.0'
// Dependencies
ext.android_annotation_version = '1.1.0-alpha01'
ext.appcompat_version = '1.1.0-alpha05'
ext.disklrucache_version = '2.0.2'
ext.google_code_findbugs_jsr_version = '3.0.2'
ext.gson_version = '2.8.5'
ext.legacy_support_v4_version = '1.0.0'
ext.material_version = '1.1.0-alpha05'
ext.okhttp_version = '3.10.0'
ext.timber_version = '4.7.1'
// Test dependencies
ext.junit_version = '4.12'
ext.test_espresso_core_version = '3.1.1'
ext.test_runner_version = '1.1.1'
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id "com.jfrog.bintray" version "1.8.3"
id "com.github.dcendents.android-maven" version "2.1"
}
allprojects {
repositories {
google()
jcenter()
}
}
// task clean(type: Delete) {
// delete rootProject.buildDir
// }