forked from ymback/NGA-CLIENT-VER-OPEN-SOURCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (36 loc) · 850 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
buildscript {
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
maven { url "https://jitpack.io" }
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
flatDir {
dirs 'libs'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
project.ext {
minSdkVersion = 21
targetSdkVersion = 28
compileSdkVersion = 29
appVersionName = '3.1.0'
appVersionCode = 3010
androidxAppcompat = '1.1.0'
fastJson = '1.1.71.android'
rxAndroid = '2.1.1'
}