-
Notifications
You must be signed in to change notification settings - Fork 245
/
build.gradle
68 lines (62 loc) · 2.03 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.21'
ext.ktx_version = '1.8.0'
ext.android_support = '1.1.0-beta01'
ext.androidx_appcompat = '1.4.0'
ext.android_other_version = '1.0.0'
ext.navigation_version = '1.0.0'
ext.constraint_version = '2.0.0-beta2'
ext.retrofit_version = '2.6.0'
ext.rx_version = '2.2.10'
ext.rx_android = '2.1.1'
ext.event_bus = '3.3.1'
ext.glide_version = '4.8.0'
ext.realm_version = '10.15.0'
ext.agentweb_version = '4.0.2'
ext.tabbar_version = '1.2.5'
ext.dagger_version = '2.23.2'
ext.iconics_version = '4.0.1-b01'
ext.okhttp3_version = '3.10.0'
ext.textfiled_box_version = '1.4.5'
ext.lifecycle_version = '1.1.1'
ext.spinkit_version = '1.2.0'
ext.gradle_version = '8.0.1'
ext.recycler_common_version = 'v4.0.6'
ext.image_load = '4.9.0'
ext.drop_menu_version = '1.0.4'
ext.arouter_api_versoion = '1.5.2'
ext.arouter_compiler_versoion = '1.5.2'
ext.anko_version='0.10.8'
ext.richtext_version='0.19.0'
ext.markwon_version='4.6.2'
ext.prism4j_version='2.0.0'
ext.dialogplus_version='1.11@aar'
ext.lottie_version='2.8.0'
ext.bugly_version='2.1.1'
ext.photoview_version='2.1.4'
ext.permission_version='4.5.0'
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.realm:realm-gradle-plugin:$realm_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://maven.aliyun.com/repository/public" }
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}