forked from openwebnet/openwebnet-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 890 Bytes
/
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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.10.0'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
classpath 'io.realm:realm-gradle-plugin:5.0.0'
}
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 = 37
currentVersionName = "2.12.7"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}