forked from CarlosMChica/easyrecycleradapters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (37 loc) · 1.18 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
}
}
def isReleaseBuild() {
return version.contains("SNAPSHOT") == false
}
allprojects {
version = VERSION_NAME
group = GROUP
repositories {
jcenter()
}
}
ext {
versionCode = VERSION_CODE.toInteger()
versionName = VERSION_NAME
minSdkLibraryVersion = 11
minSdkVersion = 13
targetSdkVersion = 21
compileSdkVersion = 21
buildToolsVersion = '21.0.2'
predexLibraries = false
}
ext.libraries = [recyclerview : 'com.android.support:recyclerview-v7:21.0.3',
appcompat : 'com.android.support:appcompat-v7:21.0.3',
butterknife : 'com.jakewharton:butterknife:5.0.0',
picasso : 'com.squareup.picasso:picasso:2.2.0',
easyrecycleradapters: 'com.github.cmc00022:easyrecycleradapters:1.0.4',
recycleranimators : 'jp.wasabeef:recyclerview-animators:1.1.0@aar']
ext.testLibraries = [mockito: "org.mockito:mockito-core:1.9.5",
junit : "junit:junit:4.11",
runner : "com.android.support.test:runner:0.3",]