This repository has been archived by the owner on Jul 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
48 lines (44 loc) · 1.48 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
buildscript {
ext.kotlin_version = '1.1.50'
ext.kotlin_coroutine_version = '0.18'
ext.gmsPlayServicesVersion = '10.2.1'
ext.supportLibraryVersion = '26.1.0'
ext.assertjAndroidVersion = '1.1.1'
ext.supportTestVersion = '0.5'
ext.espressoVersion = '2.2.2'
ext.okhttpVersion = '3.6.0'
ext.ormaVersion = '4.2.3'
ext.gradleToolsVersion = '3.0.0-beta6'
ext.dataBindingVersion = '2.3.1'
ext.rxJavaVersion = '2.0.8'
ext.rxAndroidVersion = '2.0.1'
ext.dagger2Version = '2.11'
ext.gsonVersion = '2.8.0'
ext.stethoVerion = '1.5.0'
repositories {
jcenter()
google()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleToolsVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.3'
classpath 'com.cookpad.android.licensetools:license-tools-plugin:0.23.0'
classpath 'com.google.gms:google-services:3.1.0'
classpath 'com.github.gfx.ribbonizer:plugin:1.0.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.2'
classpath 'io.fabric.tools:gradle:1.+'
}
}
allprojects {
repositories {
jcenter()
google()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}