-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
55 lines (51 loc) · 1.61 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.support_version = '27.1.1'
ext.gradle_version = '3.1.4'
ext.kotlin_version = '1.2.60'
ext.gms_version = '4.0.1'
ext.firebase_core_version = '16.0.1'
ext.firebase_crash_version = '16.0.1'
ext.firebase_config_version = '16.0.0'
ext.gms_ads_version = '15.0.1'
ext.firebase_version = '11.8.0'
ext.kotpref_version = '2.2.0'
ext.anko_version = '0.10.3'
ext.log_version = '1.1.5'
ext.joda_version = '2.9.5.1'
ext.room_version = '1.1.1'
ext.rxjava_version = '2.1.7'
ext.rxandroid_version = '2.0.1'
ext.retrofit_version = '2.3.0'
ext.okhttp_version = '3.9.1'
ext.picasso_version = '2.5.2'
ext.jsoup_version = '1.11.2'
ext.gson_version = '2.8.1'
ext.design_version = '26.1.0'
ext.contraintlayout_version = '1.1.2'
ext.junit_version = '4.12'
ext.runner_version = '1.0.1'
ext.espresso_version = '3.0.2'
// ext._version = ''
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.gms:google-services:$gms_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}