-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
70 lines (62 loc) · 2.26 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
60
61
62
63
64
65
66
67
68
69
70
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_plugin_version = '1.0.6'
ext.google_services_version = "3.0.0"
ext.fabric_version = "1.21.4"
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0-beta2'
classpath "com.google.gms:google-services:$google_services_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_plugin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_plugin_version"
classpath "io.fabric.tools:gradle:$fabric_version"
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://dl.bintray.com/jenshen1992/ua.jenshensoft/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
configuration = [
buildToolsVersion: "25.0.0",
compileSdkVersion: 25,
minSdkVersion : 15,
targetSdkVersion : 24,
versionCode : 1,
versionName : "0.13"
]
libraries = [
support_version : '25.1.0',
rx_java_version : '2.0.3',
rx_android_version : '2.0.0',
google_play_version : '10.0.1',
dagger_version : '2.8',
contraint_layout_version : "1.0.0-beta4",
mosby_version : "2.0.1",
retrofit_version : "2.1.0",
logging_interceptor_version : "3.3.1",
gson_version : "2.4",
glide_version : "3.7.0",
glide_transformation_version: "2.0.1",
canary_leak_version : "1.5",
event_bus_version : "3.0.0",
/* https://github.com/chrisjenx/Calligraphy */
calligraphy_version : "2.2.0",
jenshenSoftCompatVersion : "0.253"
]
testingLibraries = [
junit : "4.12",
espressoVersion: "2.2.2"
]
kotlin_version = '1.0.6'
}