forked from xxxyanchenxxx/VirtualBox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
54 lines (49 loc) · 1.48 KB
/
build.gradle
File metadata and controls
54 lines (49 loc) · 1.48 KB
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.
apply from: 'config.gradle'
buildscript {
ext.kotlin_version = '1.4.31'
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://maven.google.com/" }
maven { url 'https://dl.bintray.com/umsdk/release' }
maven { url 'https://repo1.maven.org/maven2/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.android.tools.build:gradle-experimental:0.11.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven {
url "https://jitpack.io"
}
maven { url "https://maven.google.com/" }
maven { url "http://objectbox.net/beta-repo/" }
maven { url 'https://dl.bintray.com/umsdk/release' }
maven { url 'https://repo1.maven.org/maven2/' }
// 支付宝 SDK AAR 包所需的配置
flatDir {
dirs 'libs'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
versions = [
okhttp : "3.10.0",
gsonVersion : "2.8.5",
constraintlayoutVewrion: "1.1.3",
recyclerview : "1.1.0",
appcompatVersion : "1.1.0",
sevenZip : "1.2.17"
]
}