forked from chrisbanes/tivi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
112 lines (99 loc) · 3.61 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
* Copyright 2017 Google, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
buildscript {
ext.versions = [
'android_gradle' : '3.2.0',
'androidx' : [
'appcompat' : '1.0.0',
'browser' : '1.0.0',
'core' : '2.0.0',
'constraint_layout': '2.0.0-alpha2',
'core_ktx' : '1.0.0',
'fragment' : '1.0.0',
'emoji' : '1.0.0',
'lifecycle' : '2.0.0',
'paging' : '2.0.0-rc01',
'palette' : '1.0.0',
'recyclerview' : '1.0.0',
'room' : '2.0.0-rc01',
'test_runner' : '1.1.0-alpha4',
'test_rules' : '1.1.0-alpha4',
'work' : '1.0.0-alpha09'
],
'coroutines' : '0.26.1',
'dagger' : '2.16', // Pinning this due to https://issuetracker.google.com/115738511
'epoxy' : '3.0.0-rc1',
'espresso' : '3.1.0-alpha4',
'firebase' : '16.0.3',
'glide' : '4.8.0',
'kotlin' : '1.2.61',
'ktlint' : '0.28.0',
'mockito' : '2.18.3',
'material_design': '1.0.0',
'rx' : '2.2.2',
'rxkotlin' : '2.3.0',
'rxlint' : '1.6.1',
'threetenbp' : '1.3.7',
'threetenabp' : '1.1.0',
'retrofit' : '2.4.0',
]
ext.buildConfig = [
'compileSdk': 28,
'minSdk' : 23,
'targetSdk' : 28,
]
repositories {
google()
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
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 'com.github.triplet.gradle:play-publisher:1.2.2'
classpath 'com.google.gms:google-services:4.1.0'
classpath 'io.fabric.tools:gradle:1.26.0'
}
}
plugins {
id "com.diffplug.gradle.spotless" version "3.14.0"
id 'com.github.ben-manes.versions' version "0.20.0"
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
subprojects {
apply plugin: 'com.diffplug.gradle.spotless'
spotless {
kotlin {
target "**/*.kt"
ktlint(versions.ktlint)
licenseHeaderFile project.rootProject.file('spotless/copyright.kt')
}
}
}
Object propOrDef(String propertyName, Object defaultValue) {
def propertyValue = project.properties[propertyName]
return propertyValue != null ? propertyValue : defaultValue
}