-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (34 loc) · 991 Bytes
/
build.gradle
File metadata and controls
37 lines (34 loc) · 991 Bytes
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
buildscript {
ext.support_version = '27.1.0'
ext.firebase_version = '11.8.0'
ext.kotlin_version = '1.2.21'
ext.moxy_version = '1.5.3'
ext.retrofit_version = '2.3.0'
ext.moshi_version = '1.5.0'
ext.android_state_version = '1.2.0'
ext.permissions_dispatcher_version = '3.1.0'
ext.fastadapter_version = '3.2.4'
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0-beta4'
classpath 'com.google.gms:google-services:3.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.mironov.smuggler:smuggler-plugin:0.13.2"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
}
repositories {
google()
jcenter()
mavenCentral()
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}