build.gradle
1.89 KB
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
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
buildToolsVersion "27.0.0"
defaultConfig {
minSdkVersion 15
targetSdkVersion 26
javaCompileOptions {
annotationProcessorOptions {
arguments = [ moduleName : project.getName() ]
}
}
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
repositories {
flatDir{
dirs 'libs'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:design:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:cardview-v7:26.+'
compile files('libs/eventbus-3.0.0.jar')
compile files('libs/glide-3.7.0.jar')
compile files('libs/glide-transformations2.0.1.jar')
compile files('libs/gson-2.8.0.jar')
compile 'com.lzy.net:okgo:3.0.4'
compile 'com.lzy.net:okserver:2.0.5'
//友盟统计-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// compile 'com.umeng.sdk:common:latest.integration'
// compile 'com.umeng.sdk:analytics:latest.integration'
//友盟统计-----------------------------------------------------------------------
compile 'com.android.support:multidex:1.0.1'
compile 'com.github.chrisbanes.photoview:library:1.2.4'
//ImagePicker里的可放大缩小的PhotoView
compile files('libs/alipaySdk-20180601.jar')
//支付宝支付
compile files('libs/libammsdk.jar')
//微信支付
compile files('libs/BaiduLBS_Android.jar')
compile files('libs/hyphenatechat_3.5.0.jar')
}