-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (48 loc) · 1.37 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileSdkVersion = 28
minSdkVersion = 19
targetSdkVersion = 28
kotlin_version = '1.3.21'
appcompat_version = '1.0.2'
exifinterface_version = '1.0.0-rc02'
}
repositories {
jcenter()
google()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
google()
maven { url "https://jitpack.io" }
}
ext {
versionCode = 13
versionName = "3.0.0-alpha"
compileSdkVersion = 28
buildToolsVersion = '28.0.0'
minSdkVersion = 15
targetSdkVersion = 28
// Test Compile
junitVersion = '4.12'
mockitocoreVersion = '1.10.19'
supportSdkVersion = '1.0.0-beta01'
espressoVersion = '3.0.2'
testRunnerVersion = '1.0.2'
constraintLayoutVersion = '1.1.1'
// RxJava
rxjava = '1.2.5'
rxandroid = '1.2.1'
// GreenRobot
eventbusVersion = '3.0.0'
baservadapterVersion = '3.0.3'
}
}