-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild.gradle
46 lines (38 loc) · 1.04 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
buildscript {
ext.kotlin_version = '1.3.20'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.13.0'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
classpath 'io.realm:realm-gradle-plugin:5.9.1'
classpath 'com.google.gms:google-services:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
}
allprojects {
apply plugin: 'idea'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
repositories {
jcenter()
google()
maven { url 'https://jitpack.io' }
}
// CURRENT APP VERSION
project.ext {
currentVersionCode = 47
currentVersionName = "3.4.1"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}