forked from daimajia/AnimeTaste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
65 lines (54 loc) · 1.48 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
classpath 'com.jakewharton.sdkmanager:gradle-plugin:+'
}
}
task wrap(type: Wrapper) {
gradleVersion = '1.9'
}
apply plugin: 'android-sdk-manager'
apply plugin: 'android'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile 'com.android.support:support-v4:19.+'
compile 'com.android.support:appcompat-v7:19.+'
compile 'com.github.johnpersano:supertoasts:1.3.4@aar'
compile 'im.dino:dbinspector:1.0.5@aar'
compile project(':libraries:ViewPagerIndicator')
compile project(':libraries:gif-library')
compile project(':libraries:android-switch-backport')
compile project(':libraries:MainLibs')
compile project(':libraries:OneKeyShare')
}
ext.compileSdkVersion=19
ext.buildToolsVersion="19.1.0"
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
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'
}
}