-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
75 lines (69 loc) · 2.21 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
71
72
73
74
75
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
compile_sdk_version = 27
build_tools_version = '27.0.3'
min_sdk_version = 16
target_sdk_version = 28
app_version = '1.5'
app_version_code = 9
kotlin_version = '1.2.41'
support_version = '27.1.0'
retrofit_version = '2.3.0'
rxjava_version = '2.1.12'
rxandroid_version = '2.0.1'
okhttp_version = '3.9.0'
snackbarbuilder_version = '0.9.0'
calligraphy_version = '2.2.0'
material_dialogs_version = '0.9.5.0'
commons_io_version = '2.6'
slidinguppanel_version = '3.4.0'
fab_speed_dial_version = '1.0.7'
topsnackbar_version = '1.1.1'
markdownview_version = '1.1.0'
gms_version = '11.6.2'
firebase_version = '11.6.2'
maoni_version = '6.0.0'
wear_version = '2.1.0'
google_services_version = '3.1.0'
fresco_version = '1.5.0'
multidex_version = '1.0.1'
constraint_layout_version = '1.0.2'
rx_binding_version = '2.0.0'
gson_version = '2.7'
crashlytics_version = '2.9.3'
}
repositories {
jcenter()
google()
maven {
url 'https://maven.fabric.io/public'
}
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.2'
classpath 'com.google.firebase:firebase-plugins:1.1.2'
classpath 'io.fabric.tools:gradle:1.25.4'
classpath "com.savvasdalkitsis:module-dependency-graph:0.3"
}
}
apply plugin: "com.savvasdalkitsis.module-dependency-graph"
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
subprojects {
task allDeps(type: DependencyReportTask) {}
}