-
Notifications
You must be signed in to change notification settings - Fork 498
/
build.gradle
34 lines (31 loc) · 852 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
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
}
}
allprojects {
tasks.withType(Test).configureEach {
maxParallelForks = 4
forkEvery = 100
reports.html.required = false
reports.junitXml.required = false
}
repositories {
jcenter()
mavenCentral()
maven { url "https://maven.google.com" }
maven { url "https://jitpack.io" }
maven { url "https://jcenter.bintray.com" }
// This is the only repo that seems to be hosting "com.firebase:firebase-jobdispatcher" in 2024
maven { url "https://maven.scijava.org/content/repositories/public/" }
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}