forked from Meituan-Dianping/Robust
-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
44 lines (40 loc) · 1.41 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.21'
apply from: './version.gradle'
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/yummylau/maven' }
maven { url './repo' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// classpath 'com.effective.android:gradle-plugin-fix:0.4.99.1'
// classpath 'com.effective.android:gradle-plugin-fix:0.4.99.2'
// classpath 'com.effective.android:auto-patch-plugin-fix:0.4.99.1'
//本地调试
classpath 'com.effective.plugins:gradle-plugin'
classpath 'com.effective.plugins:auto-patch-plugin'
classpath 'com.novoda:bintray-release:0.9.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
allprojects {
repositories {
google()
jcenter()
mavenLocal()
maven { url 'https://dl.bintray.com/yummylau/maven' }
maven { url './repo' }
}
tasks.withType(JavaCompile) { options.encoding = "UTF-8" }
}
task clean(type: Delete) {
delete rootProject.buildDir
}