-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (51 loc) · 2.04 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.coroutinesVersion = "1.4.2"
ext.fragmentVersion = '1.1.0-alpha09'
ext.gsonVersion = '2.8.2'
ext.glideVersion = '4.9.0'
ext.kotlin_version = '1.4.10'
ext.lifecycleVersion = '2.2.0-alpha01'
ext.navigationVersion = "2.0.0"
ext.roomVersion = '2.3.0-alpha03'
ext.workVersion = '2.1.0-alpha02'
ext.pagingVersion = '3.0.0-alpha08'
//ext.pagingVersion = '2.1.0-alpha01'
ext.smartVersion = '2.0.1'
ext.workVersion = "2.0.1"
ext.camerax_version = "1.0.0-alpha03"
ext.startupVersion = '1.0.0-alpha03'
ext.trasnVersion = "4.0.1"
ext.sweetVersion = "1.5.1"
ext.lottieVersion = '2.7.0'
ext.dataStoreVersion = '1.0.0-alpha06'
ext.mmkvVersion = '1.2.7'
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}