-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
36 lines (29 loc) · 990 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
buildscript {
ext {
gitTag = 'git describe --tags'.execute([], project.rootDir).text.trim()
gitCommitCount = Integer.parseInt('git rev-list --count HEAD'.execute([], project.rootDir).text.trim())
buildToolsVersion = '25.0.2'
compileSdkVersion = 25
targetSdkVersion = 25
minSdkVersion = 15
// plugins
androidGradlePluginVersion = '2.3.1'
realmVersion = '3.3.1'
dexcountVersion = '0.6.4'
// dependencies
timberVersion = '4.5.1'
supportLibVersion = '25.3.1'
leakCanaryVersion = '1.5.1'
}
repositories {
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$androidGradlePluginVersion"
classpath "io.realm:realm-gradle-plugin:$realmVersion"
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:$dexcountVersion"
}
}
plugins {
id "com.github.dcendents.android-maven" version "1.5" apply false
}