forked from steve21124/BidHub-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (46 loc) · 1.29 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
apply plugin: 'com.android.application'
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.14.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
repositories {
mavenCentral()
}
dependencies {
compile files('libs/bolts-android-1.1.3.jar')
compile files('libs/Parse-1.7.1.jar')
compile "com.android.support:appcompat-v7:21.0.+"
compile 'com.android.support:cardview-v7:+'
compile 'com.android.support:recyclerview-v7:+'
compile 'com.android.support:palette-v7:+'
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
compile 'com.squareup.okhttp:okhttp:1.5.3'
compile 'com.jakewharton:butterknife:4.0.1'
compile 'de.greenrobot:eventbus:2.2.0'
compile 'com.loopj.android:android-async-http:1.4.6'
}
android {
compileSdkVersion 21
buildToolsVersion = "21.1.0"
defaultConfig {
minSdkVersion 15
targetSdkVersion 21
}
dependencies {
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
}
}