-
Notifications
You must be signed in to change notification settings - Fork 28
/
build.gradle
46 lines (42 loc) · 1.66 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
apply plugin: 'com.android.application'
apply plugin: 'com.jakewharton.butterknife'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "com.chandler.red.mystock"
minSdkVersion 15
targetSdkVersion 28
versionCode 2
versionName "1.1"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation files('lib/pinyin4j-2.5.0.jar')
implementation project(':LRecyclerview_library')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'cn.bingoogolapple:bga-swipebacklayout:1.2.0@aar'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.timehop.stickyheadersrecyclerview:library:[0.4.3]@aar'
implementation 'com.huxq17.xrefreshview:xrefreshview:3.6.9'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.jakewharton:butterknife:9.0.0-rc2'
annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0-rc2'
implementation 'com.android.support:design:28.0.0'
implementation 'com.github.bumptech.glide:glide:4.3.1'
implementation 'com.google.code.gson:gson:2.8.1'
implementation project(path: ':DragPhotoView')
}