forked from stepango/Archetype
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (29 loc) · 872 Bytes
/
Copy pathbuild.gradle
File metadata and controls
34 lines (29 loc) · 872 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.androidPluginVersion = "2.3.1"
ext.kotlin_version = '1.1.1'
ext.smugglerVersion = "0.12.10"
ext.supportLibVersion = "25.3.0"
ext.glideVersion = "3.7.0"
ext.glideOkHttp = "1.4.0"
ext.lastAdapterVersion = "2.0.0"
ext.dataBinding = "1.3.1"
ext.okhttpVersion = "3.6.0"
ext.retrofitVersion = "2.2.0"
repositories {
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$androidPluginVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.mironov.smuggler:smuggler-plugin:$smugglerVersion"
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}