forked from iagocanalejas/retrocache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (35 loc) · 803 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
// Base
libraryCode = 2
libraryName = '1.1'
compileSdkVersion = 25
buildToolsVersion = '25.0.2'
supportLib = '25.1.0'
minSdkVersion = 12
// Tests
junit = '4.12'
mockwebserver = '3.5.0'
// Library
retrofit = '2.1.0'
gsonVersion = '2.8.0'
dualcache = '1.3'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}