forked from guiying712/AndroidModulePattern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
76 lines (64 loc) · 1.74 KB
/
build.gradle
File metadata and controls
76 lines (64 loc) · 1.74 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
64
65
66
67
68
69
70
71
72
73
74
75
76
apply plugin: 'com.android.library'
android {
compileSdkVersion build_versions.target_sdk
defaultConfig {
minSdkVersion build_versions.min_sdk
targetSdkVersion build_versions.target_sdk
versionCode 1
versionName "1.0"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
buildConfigField "boolean", "LOG_DEBUG", "true"
zipAlignEnabled false
shrinkResources false
minifyEnabled false
debuggable true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
api fileTree(include: ['*.jar'], dir: 'libs')
// Support libraries
api deps.support.app_compat
api deps.support.v4
api deps.support.v13
api deps.support.design
api deps.support.cardview
api deps.support.percent
api deps.support.recyclerview
api deps.constraint_layout
// RxJava and retrofit
api deps.rx_android
api deps.rxjava2
api deps.retrofit.runtime
api deps.retrofit.gson
api deps.persistent_cookie
//Dagger
api deps.dagger.runtime
api deps.dagger.android
api deps.dagger.android_support
// other
api deps.kotlin.stdlib
api deps.event_bus
api deps.gson
api deps.permission
api deps.utils
api deps.glide
//view
api deps.photo_view
api deps.easy_recycler
api deps.material_dialog
api deps.logger
api deps.toasty
//router
api deps.arouter_api
//annotationProcessor
annotationProcessor deps.dagger.android_support_compiler
annotationProcessor deps.dagger.compiler
}