forked from pluscubed/velociraptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (32 loc) · 848 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
36
37
apply plugin: 'com.github.ben-manes.versions'
buildscript {
ext{
kotlin_version = '1.2.60'
support_version = '28.0.0-rc01'
retrofit_version = '2.4.0'
okhttp_version = '3.11.0'
leakcanary_version = '1.6.1'
}
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0-alpha05'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
classpath 'com.google.gms:google-services:4.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.9'
distributionType = Wrapper.DistributionType.ALL
}
task clean(type: Delete) {
delete rootProject.buildDir
}