forked from Tencent/QMUI_Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (36 loc) · 999 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.61'
repositories {
mavenLocal()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// classpath 'com.qmuiteam:skin-maker-plugin:0.0.1'
}
}
subprojects { project ->
group = GROUP
}
allprojects {
repositories {
jcenter()
mavenLocal()
google()
}
ext {
minSdkVersion = 19
targetSdkVersion = 29
compileSdkVersion = 29
appcompatVersion= '1.1.0'
materialVersion='1.2.0-alpha02'
annotationVersion='1.1.0-beta01'
butterknifeVersion = '10.1.0'
constraintLayoutVersion = "1.1.3"
mmkvVersion = '1.0.23'
}
}