forked from b1n0m13/todoapp
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
91 lines (68 loc) · 1.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
buildscript {
ext.kotlinVersion = "1.3.41"
ext.gradleVersion = "3.4.1"
repositories {
jcenter()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlinVersion"
}
}
ext {
minApiVersion = 19
maxApiVersion = 28
aptVersion = "28.0.3"
appVersionName = "1.0.0"
appVersionCode = 1
timberVersion = "4.6.1"
junitVersion = "4.12"
appcompatVersion = "1.1.0"
materialVersion = "1.0.0"
constraintVersion = "1.1.3"
gsonVersion = "2.8.5"
}
allprojects {
repositories {
jcenter()
google()
}
}
subprojects {
if (project.name == 'app') {
apply plugin: 'com.android.application'
} else {
apply plugin: 'com.android.library'
}
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion maxApiVersion
buildToolsVersion aptVersion
defaultConfig {
minSdkVersion minApiVersion
targetSdkVersion maxApiVersion
if (project.name == 'app') {
applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "app-${variant.name}-${variant.versionName}.apk"
}
}
}
}
}
dependencies {
// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
// Logging
implementation "com.jakewharton.timber:timber:$timberVersion"
// Unit tests
testImplementation "junit:junit:$junitVersion"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}