-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.gradle
46 lines (42 loc) · 2.52 KB
/
config.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
ext {
greendao_version = '3.2.2'
lombok_version = '1.18.6'
kotlin_version = '1.3.40'
buildInfo = [
compileSdkVersion : 28,
targetSdkVersion : 28,
minSdkVersion : 19,
versionCode : 2,
versionName : '0.2.0',
versionDes : '1. 添加检查更新功能\n2. 美化`关于页面`',
updatePath : 'update',
updateBaseUrl : 'https://raw.githubusercontent.com/SirLYC/EveryDownload/master/update/',
updateInfoFilename: 'updateInfo.json'
]
deps = [
'kotlin-stdlib' : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version",
'lifecycle-ktx' : "androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0-alpha04",
'core-ktx' : 'androidx.core:core-ktx:1.2.0-alpha01',
'preference' : 'androidx.preference:preference:1.1.0-beta01',
'okhttp' : 'com.squareup.okhttp3:okhttp:3.14.1',
'okhttp-log' : 'com.squareup.okhttp3:logging-interceptor:3.14.1',
'greendao' : "org.greenrobot:greendao:$greendao_version",
'appcompact' : 'androidx.appcompat:appcompat:1.1.0-beta01',
'core' : 'androidx.core:core:1.2.0-beta01',
'constraintlayout' : "androidx.constraintlayout:constraintlayout:2.0.0-beta1",
'lifecycle-extensions': 'androidx.lifecycle:lifecycle-extensions:2.2.0-alpha01',
'lombok' : "org.projectlombok:lombok:$lombok_version",
'recyclerview' : 'androidx.recyclerview:recyclerview:1.1.0-alpha06',
'multi-type' : 'me.drakeet.multitype:multitype:4.0.0-alpha3',
'material' : 'com.google.android.material:material:1.1.0-alpha07',
'downloader' : 'com.github.SirLYC:YC-Downloader:0.7.1-beta',
'rxpermissions' : 'com.github.tbruyelle:rxpermissions:0.10.2',
'rxjava' : 'io.reactivex.rxjava2:rxjava:2.2.9',
'glide' : 'com.github.bumptech.glide:glide:4.9.0',
'glide-compiler' : 'com.github.bumptech.glide:compiler:4.9.0',
'junit' : 'junit:junit:4.13-beta-2',
'test-core' : 'androidx.test:core:1.2.0-alpha04',
'runner' : 'androidx.test:runner:1.2.0-alpha04',
'epresso' : 'androidx.test.espresso:espresso-core:3.2.0-alpha04'
]
}