forked from moezbhatti/qksms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (53 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.androidx_version = '1.0.0-beta01'
ext.androidx_testrunner_version = '1.1.0-alpha3'
ext.autodispose_version = '0.5.1'
ext.conductor_version = '2.1.5'
ext.constraintlayout_version = '1.1.0'
ext.dagger_version = "2.16"
ext.espresso_version = '3.1.0-alpha3'
ext.exoplayer_version = "2.8.1"
ext.glide_version = "4.8.0-20180619.011009-9"
ext.glide_compiler_version = "4.8.0-20180619.011013-9"
ext.junit_version = '4.12'
ext.kotlin_version = '1.2.51'
ext.ktx_version = "1.0.0-alpha1"
ext.lifecycle_version = '2.0.0-alpha1'
ext.mockito_version = '2.18.3'
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.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.3.0-alpha03'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.realm:realm-gradle-plugin:4.3.1"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
maven {
name 'glide-snapshot'
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}