-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (43 loc) · 1.46 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
versions = [
compileSdk : 27,
buildTools : "28.0.0-rc1",
minSdk : 15,
targetSdk : 27,
kotlin : '1.2.41',
supportLib : '27.1.1',
dagger : '2.14.1',
rxJava : '2.1.9',
rxAndroid : '2.0.1',
okhttp : '3.9.1',
timber : '4.6.0'
]
}
repositories {
jcenter()
google()
maven { url 'https://maven.fabric.io/public' }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0-alpha16'
classpath 'com.google.gms:google-services:4.0.1'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath 'com.google.gms:oss-licenses:0.9.2'
classpath 'io.fabric.tools:gradle:1.25.1'
classpath 'com.google.firebase:firebase-plugins:1.1.5'
classpath "gradle.plugin.org.jlleitschuh.gradle:ktlint-gradle:4.0.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
}
}
allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com" }
}
}