-
Notifications
You must be signed in to change notification settings - Fork 498
/
build.gradle
68 lines (57 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.0'
}
}
task wrap(type: Wrapper) {
gradleVersion = '1.9'
}
apply plugin: 'android-sdk-manager'
apply plugin: 'com.android.application'
repositories {
jcenter()
maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
mavenCentral()
mavenLocal()
maven { url "https://jitpack.io" }
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile 'com.android.support:support-v4:22.0.0'
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.github.johnpersano:supertoasts:1.3.4@aar'
compile 'fr.baloomba:viewpagerindicator:2.4.2'
compile 'com.koushikdutta.async:androidasync:2.1.3'
compile 'com.afollestad:material-dialogs:0.7.3.1'
compile 'im.dino:dbinspector:1.0.5@aar'
compile project(':libraries:gif-library')
}
ext.compileSdkVersion = 21
ext.buildToolsVersion = "21.1.2"
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
lintOptions {
abortOnError false
}
sourceSets {
main {
assets {
srcDir 'assets'
}
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
}