forked from JessYanCoding/AndroidAutoSize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (38 loc) · 975 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
41
42
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenLocal()
maven {
url 'https://repo.huaweicloud.com/repository/maven/'
}
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.1'
// classpath 'com.novoda:bintray-release:0.9.2'
}
}
allprojects {
repositories {
mavenLocal()
maven {
url 'https://repo.huaweicloud.com/repository/maven/'
}
mavenCentral()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 14
targetSdkVersion = 29
compileSdkVersion = 29
buildToolsVersion = "29.0.2"
versionCode = 41
versionName = "1.2.1"
appcompat_v7 = "com.android.support:appcompat-v7:28.0.0"
androidx_appcompat = "androidx.appcompat:appcompat:1.1.0"
}