-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
75 lines (69 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
buildscript {
repositories {
maven { url 'http://maven.raeblog.com:8081/repository/maven-public/' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0-SNAPSHOT'
// 热更新插件
classpath "com.tencent.bugly:tinker-support:1.0.8"
classpath 'com.meituan.android.walle:plugin:1.1.6'
}
}
allprojects {
repositories {
maven { url 'http://maven.raeblog.com:8081/repository/maven-public/' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "http://mvn.leancloud.cn/nexus/content/repositories/public" }
maven { url "https://jitpack.io" }
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
// 清除缓存的maven库
task cleanCache(type: Delete) {
doLast {
def dir = rootProject.gradle.gradleUserHomeDir.path
def cache = dir + '\\caches\\modules-2\\files-2.1\\'
def meta = dir + '\\caches\\modules-2\\metadata-2.23\\descriptors\\'
def list = [
'com.rae.core',
'com.rae.swift',
'com.rae.widget',
'com.squareup.okhttp3',
'com.github.raee'
]
list.forEach { item ->
println '-------------> delete cache <----------------'
def itemCache = cache + item
def itemMeta = meta + item
delete itemCache
println itemCache
delete itemMeta
println itemMeta
}
println '-------------> end clean cache task <----------------'
}
}
ext {
// 自动构建版本号
buildToolsVersion = '27.0.1'
compileSdkVersion = 27
targetSdkVersion = 27
minSdkVersion = 17
supportVersion = '27.0.1'
appcompat = 'com.android.support:appcompat-v7:' + supportVersion
design = 'com.android.support:design:' + supportVersion
annotations = 'com.android.support:support-annotations:' + supportVersion
cardview = 'com.android.support:cardview-v7:' + supportVersion
rxjava = 'io.reactivex.rxjava2:rxjava:2.1.0'
rxandroid = 'io.reactivex.rxjava2:rxandroid:2.0.1'
butterknife = 'com.jakewharton:butterknife:9.0.0-SNAPSHOT'
butterknifeCompiler = 'com.jakewharton:butterknife-compiler:9.0.0-SNAPSHOT'
}