-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.gradle
More file actions
50 lines (43 loc) · 1.43 KB
/
module.gradle
File metadata and controls
50 lines (43 loc) · 1.43 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
apply plugin: 'com.android.library'
apply plugin: 'com.vc.constant'
android {
compileSdkVersion SDK_VERSION.compileSdkVersion
defaultConfig {
minSdkVersion SDK_VERSION.minSdkVersion
targetSdkVersion SDK_VERSION.targetSdkVersion
versionCode active.versionCode
versionName active.versionName
javaCompileOptions {
annotationProcessorOptions {
arguments = [AROUTER_MODULE_NAME: project.getName()]
}
}
ndk {
abiFilters 'armeabi', 'armeabi-v7a'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
dataBinding = true
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.github.mancj:MaterialSearchBar:0.8.5'
implementation 'com.android.support:design:28.0.0'
implementation 'com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:1.0.0'
annotationProcessor 'com.alibaba:arouter-compiler:1.2.1'
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
implementation "com.wang.avi:library:2.1.3"
implementation "androidx.cardview:cardview:1.0.0"
api project(path: ':common')
}