forked from jimmc/HapiPodcastJ
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbuild.gradle
40 lines (35 loc) · 1007 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'kotlin'
buildscript {
//dependencies
ext {
espressoVersion = '2.2.2'
supportLibraryVersion = '27.0.2'
playServicesVersion = '11.8.0'
architectureComponentsVersion = '1.0.0'
kotlin_version = '1.2.10'
okhttp_version = '3.9.1'
glide_version = '4.4.0'
}
repositories {
jcenter()
google()
}
dependencies {
//classpath 'com.android.tools.build:gradle:3.0.0-alpha4'
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.14.0'
classpath 'com.google.gms:google-services:3.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
}
}
repositories {
mavenCentral()
google()
}