-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
47 lines (39 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
45
46
47
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
repositories {
flatDir {
dirs 'libs'
}
}
useLibrary 'org.apache.http.legacy'
}
dependencies {
api 'org.apache.httpcomponents:httpcore:4.4.2'
api 'org.greenrobot:eventbus:3.0.0'
//compile 'com.loopj.android:android-async-http:1.4.8'
api project(':qftplib')
api files('libs/android-async-http-1.4.8.aar')
//api 'com.loopj.android:android-async-http:1.4.8'
debugApi rootProject.ext.leakcanaryDebug
releaseApi rootProject.ext.leakcanaryRelease
api rootProject.ext.libSupportCardView
api rootProject.ext.libSupportV4
api rootProject.ext.libSupportV4Design
}