-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
37 lines (33 loc) · 903 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
def supportVersion = "1.1.0-rc01"
project.ext {
applicationId = "com.kalu.czxing"
compileSdkVersion = 33
buildToolsVersion = "33.0.1"
minSdkVersion = 14
targetSdkVersion = 33
abortOnLintError = false
checkLintRelease = false
abortOnLintError = false
javaVersion = "1.8"
appcompat = "androidx.appcompat:appcompat:${supportVersion}"
}
buildscript {
repositories {
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/google' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.0'
}
}
allprojects {
repositories {
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/google' }
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}