-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (29 loc) · 816 Bytes
/
build.gradle
File metadata and controls
32 lines (29 loc) · 816 Bytes
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
buildscript {
repositories {
google()
mavenCentral()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://artifact.bytedance.com/repository/AwemeOpenSDK' }
maven {
url 'http://www.idescout.com/maven/repo/'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://artifact.bytedance.com/repository/AwemeOpenSDK' }
}
// tasks.withType(JavaCompile) {
// sourceCompatibility = 1.8
// targetCompatibility = 1.8
// }
}
task clean(type: Delete) {
delete rootProject.buildDir
}