-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (33 loc) · 973 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
buildscript {
ext.kotlin_version = '1.1.51'
ext.anko_version = '0.10.1'
ext.support_version = '26.1.0'
ext.BaseRecyclerViewAdapterHelper = '2.9.30'
ext.SwipeDelMenuLayout = 'V1.2.5'
ext.dagger_version = '2.10'
ext.retrofit_version = '2.3.0'
ext.rxjava_version = '2.1.5'
ext.rxandroid_version = '2.0.1'
repositories {
jcenter()
google()
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath "io.realm:realm-gradle-plugin:3.2.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}