-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 1002 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
43
44
45
46
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// Sdk and tools
minSdkVersion = 14
targetSdkVersion = 23
compileSdkVersion = 23
buildToolsVersion = '23.0.2'
// App dependencies
supportLibraryVersion = '23.4.0'
junitVersion = '4.12'
// Custom
retrofitVersion = '2.1.0'
gsonConvertVersion = '2.1.0'
okHttpVersion = '3.4.1'
picassoVersion = '2.5.2'
butterKnifeVersion = '8.1.0'
javapoetVersion = '1.7.0'
otto_eventbus = '1.3.8'
robolectricVersion = '3.1.2'
ageraLibrariesVersion = '1.2.0-beta2'
}