-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
76 lines (73 loc) · 2.48 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
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.application'
apply plugin: 'me.tatarka.retrolambda'
apply plugin: 'com.jakewharton.butterknife'
apply plugin: 'org.greenrobot.greendao'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "sunxl8.your_diary"
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
greendao {
schemaVersion 11
daoPackage 'sunxl8.your_diary.db.dao'
targetGenDir 'src/main/java'
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:appcompat-v7:25.0.1'
compile 'com.android.support:design:25.0.1'
compile 'com.android.support:recyclerview-v7:25.0.1'
compile 'com.android.support:cardview-v7:25.1.1'
//RxJava
compile 'io.reactivex:rxjava:1.1.6'
compile 'io.reactivex:rxandroid:1.2.0'
//RxLife避免泄漏
compile 'com.trello:rxlifecycle:0.8.0'
compile 'com.trello:rxlifecycle-components:0.8.0'
//RxBinding
compile 'com.jakewharton.rxbinding:rxbinding:0.4.0'
compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.4.0'
compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:0.4.0'
compile 'com.jakewharton.rxbinding:rxbinding-design:0.4.0'
//日志
compile 'com.orhanobut:logger:1.15'
//ButterKnife
compile 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
//greenDAO
compile 'org.greenrobot:greendao:3.2.0'
//CircleImageView
compile 'de.hdodenhof:circleimageview:2.1.0'
//drop window
compile 'com.shehabic.droppy:Droppy:0.5.1@aar'
//tablayout
compile 'com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar'
//Glide
compile 'com.github.bumptech.glide:glide:3.7.0'
//添加图片
compile 'com.jph.takephoto:takephoto_library:4.0.3'
//lock
compile 'com.github.sunxiaolei:PinLockView:v1.0.0'
//xrecyclerview
compile 'com.jcodecraeer:xrecyclerview:1.3.2'
//tag
compile 'me.gujun.android.taggroup:library:1.4@aar'
}