forked from UseHover/HoverRunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (31 loc) · 904 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
35
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.google.gms:google-services:4.3.3'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.2.0'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "http://maven.usehover.com/releases" }
maven { url "http://maven.usehover.com/snapshots" }
// maven {
// url 'https://pro.maven.usehover.com/releases'
// credentials {
// username project.HoverUsername
// password project.HoverPassword
// }
// authentication { basic(BasicAuthentication) }
// content { includeGroup "com.hover" }
// }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}