-
Notifications
You must be signed in to change notification settings - Fork 170
/
build.gradle
53 lines (44 loc) · 1.28 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
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
google()
mavenCentral()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
maven { url "https://www.jitpack.io" }
maven { url 'https://repo1.maven.org/maven2/' }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url "https://www.jitpack.io" }
maven { url 'https://repo1.maven.org/maven2/' }
flatDir {
dirs 'libs'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
project.ext {
minSdkVersion = 23
targetSdkVersion = 30
compileSdkVersion = 30
appVersionName = '3.7.6'
appVersionCode = 3076
fastJson = '1.1.71.android'
rxAndroid = '2.1.1'
lifecycle_version = "2.2.0"
androidxAppcompat = '1.2.0-alpha03'
androidxMaterial = '1.2.0'
room_version = "2.4.1"
}