-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
70 lines (53 loc) · 1.69 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// Sdk and tools
compileSdkVersion = 29
minSdkVersion = 19
targetSdkVersion = 29
buildToolsVersion= "29.0.2"
//dependencies
appcompatVersion = '1.2.0'
constraintlayoutVersion = '2.0.4'
navigationVersion = '2.2.2'
roomVersion = '2.2.6'
workVersion = '2.3.4'
lifecycleVersion = '2.2.0'
lifecycleViewmodelSavedstateVersion = '2.3.0-alpha04'
legacySupportV4Version = '1.0.0'
paging_version = "2.1.0"
workManagerVersion = "2.5.0"
junitVersion = '4.13.2'
testExtJunitVersion = '1.1.2'
espressoVersion = '3.3.0'
materialVersion = "1.2.1"
swiperefreshlayoutVersion = "1.1.0"
recyclerviewVersion = "1.1.0"
rxjavaVersion = "2.1.0"
glideVersion = '4.9.0'
gsonVersion = '2.8.6'
debugDBVersion = '1.0.0'
}
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
google()
// jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// hilt依赖注入插件
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.28-alpha'
}
}
allprojects {
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
google()
// jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}