-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
51 lines (41 loc) · 1.11 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.2.21'
support_library = '27.1.1'
build_tools = '26.0.2'
constraint_layout = '1.1.0'
arch_comp = "1.1.1"
android_plugin = "3.1.0"
junit = '4.12'
mockito = '2.11.0'
espresso = '3.0.1'
android_junit_runner = '1.0.1'
compile_sdk = 27
min_sdk = 19
target_sdk = 27
app_id = 'com.acme.tipcalculator'
version_code = 1
version_name = '1.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_plugin"
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
}
}
allprojects {
ext
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}