forked from moezbhatti/qksms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (41 loc) · 1.28 KB
/
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
38
39
40
41
42
43
44
45
46
47
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.autodispose_version = '0.5.1'
ext.constraintlayout_version = '1.1.0-beta5'
ext.dagger_version = "2.11"
ext.glide_version = "4.3.0"
ext.kotlin_version = '1.2.31'
ext.ktx_version = "0.2"
ext.lifecycle_version = '1.1.0'
ext.realm_version = '4.3.1'
ext.realm_adapters_version = '2.1.0'
ext.rxandroid_version = '2.0.1'
ext.rxbinding_version = '2.0.0'
ext.rxjava_version = '2.1.4'
ext.rxkotlin_version = '2.1.0'
ext.rx_preferences_version = '2.0.0-RC3'
ext.support_version = '27.1.0'
ext.timber_version = '4.5.1'
ext.abiCodes = ['armeabi-v7a': 1, 'arm64-v8a': 2]
repositories {
maven { url 'https://maven.google.com' }
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.realm:realm-gradle-plugin:4.3.1"
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}