forked from gabrielemariotti/cardslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (29 loc) · 817 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
apply plugin: 'android-sdk-manager'
apply plugin: 'android-library'
repositories {
mavenCentral()
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
versionName project.VERSION_NAME
versionCode Integer.parseInt(project.VERSION_CODE)
}
// This is important, it will run lint checks but won't abort build
lintOptions {
abortOnError false
}
}
dependencies {
// Cards Library
compile project(':library')
//StaggeredGrid
compile 'com.etsy.android.grid:library:1.0.4'
//DynamicList
compile 'com.nhaarman.listviewanimations:library:2.6.0'
}
// Used to update in Maven
//apply from: '../maven_push.gradle'