forked from blog2i2j/bytebyte6.._..Tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
36 lines (34 loc) · 1.42 KB
/
build.gradle.kts
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
buildscript {
//apply from: 'https://raw.githubusercontent.com/hss01248/flipperUtil/dev/remote3.gradle'
apply(from = "https://raw.githubusercontent.com/hss01248/flipperUtil/dev/remote3.gradle")
apply(from = "https://raw.githubusercontent.com/hss01248/flipperUtil/master/deps/depsLastestChecker.gradle")
apply(from = "https://raw.githubusercontent.com/hss01248/flipperUtil/dev/z_config/git_branch_info.gradle")
apply(from = "https://raw.githubusercontent.com/skyNet2017/AppUpdate/master/uploadToPyger.gradle?a=2")
// apply from: 'https://raw.githubusercontent.com/hss01248/flipperUtil/master/deps/depsLastestChecker.gradle'
// apply from: 'https://raw.githubusercontent.com/hss01248/flipperUtil/dev/z_config/git_branch_info.gradle'
//apply from:'https://raw.githubusercontent.com/skyNet2017/AppUpdate/master/uploadToPyger.gradle?a=1'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath(ClassPath.FIREBASE_CRASH)
classpath(ClassPath.GOOGLE_SERVICE)
classpath(ClassPath.GRADLE_KOTLIN)
classpath(ClassPath.GRADLE_MAVEN)
classpath(ClassPath.GRADLE)
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url = uri(Uri.JITPACK_IO) }
maven { url = uri(Uri.ALIYUN_MAVEN) }
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}