-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
build.gradle
53 lines (45 loc) · 1.43 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenLocal()
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath "com.github.jengelman.gradle.plugins:shadow:4.0.4"
}
}
allprojects {
repositories {
mavenLocal()
mavenCentral()
google()
jcenter()
}
tasks.withType(Javadoc).all {
enabled = false
options.setEncoding('UTF-8')
}
}
ext {
minSdkVersion = 10
compileSdkVersion = 29
targetSdkVersion = 23
buildToolsVersion = '28.0.3'
androidXAnnotationVersion = '1.1.0'
javaVersion = JavaVersion.VERSION_1_8
GROUP = 'com.tencent.tinker'
VERSION_NAME = '1.9.15'
POM_DESCRIPTION = 'Tinker is a hot-fix solution library for Android, it supports dex, library and resources update without reinstalling apk.'
POM_URL = 'https://github.com/Tencent/tinker'
POM_SCM_URL = 'https://github.com/Tencent/tinker.git'
POM_LICENCE_NAME = 'BSD License'
POM_LICENCE_URL = 'https://opensource.org/licenses/BSD-3-Clause'
POM_LICENCE_DIST = 'repo'
POM_DEVELOPER_ID = 'Tencent Wechat'
POM_DEVELOPER_NAME = 'Tencent Wechat, Inc.'
}
apply from: rootProject.file('gradle/check.gradle')