-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
83 lines (72 loc) · 2.35 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
buildscript {
ext.versions = [
'android_gradle': '3.2.0',
'kotlin' : '1.2.71',
'ktlint' : '0.19.0',
'androidx' : [
'appcompat' : '1.0.0',
'constraint_layout': '1.1.3',
'design' : '1.0.0',
'core_ktx' : '1.0.0',
'lifecycle' : '2.0.0',
'room' : '2.0.0',
'test_runner' : '1.1.0-alpha4',
'test_rules' : '1.1.0-alpha4'
],
'rx' : '2.2.2',
'rxkotlin' : '2.3.0',
'rxlint' : '1.6.1',
'dagger' : '2.16',
'threetenabp' : '1.1.0',
'moshi' : '1.7.0',
'retrofit' : '2.4.0',
'espresso' : '3.1.0-alpha4'
]
ext.buildConfig = [
'compileSdk': 28,
'minSdk' : 21,
'targetSdk' : 28,
]
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:${versions.android_gradle}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${versions.kotlin}"
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.3'
classpath 'io.github.rockerhieu:versionberg:1.0.2'
}
}
plugins {
id "com.diffplug.gradle.spotless" version "3.15.0"
id 'com.github.ben-manes.versions' version "0.20.0"
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
subprojects {
apply plugin: 'com.diffplug.gradle.spotless'
spotless {
kotlin {
target "**/*.kt"
ktlint(versions.ktlint)
licenseHeaderFile project.rootProject.file('spotless/copyright.kt')
}
}
}
@SuppressWarnings("GroovyUnusedDeclaration")
String propOrDef(String propertyName, String defaultValue) {
def propertyValue = project.properties[propertyName]
return propertyValue != null ? propertyValue : defaultValue
}