-
Notifications
You must be signed in to change notification settings - Fork 806
/
build.gradle
48 lines (45 loc) · 1.25 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
// Top-level build file where you can add configuration options libuvccommon to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
androidXVersion = '1.3.1'
versionCompiler = 29
versionTarget = 27
minSdkVersion = 19
versionCode = 126
versionNameString = '3.3.3'
javaSourceCompatibility = JavaVersion.VERSION_1_8
javaTargetCompatibility = JavaVersion.VERSION_1_8
// ndkVersion = '21.0.6113669'
supportLibVersion = '27.1.1'
versionBuildTool = '27.0.3'
kotlinCoreVersion = '1.3.2'
kotlinCoroutines = '1.3.9'
materialVersion = '1.3.0'
constraintlayoutVersion = '2.0.4'
lifecycle_version = '2.2.0'
quick_version= '2.9.50'
dialog_version= '3.2.1'
bugly_version = '3.4.4'
bugly_native_version = '3.9.0'
}