-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (27 loc) · 785 Bytes
/
build.gradle
File metadata and controls
30 lines (27 loc) · 785 Bytes
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
buildscript {
ext {
kotlin_version = '1.3.0'
support_version = '27.1.1'
dagger_version = '2.16'
permissiondispatcher_version = '3.2.0'
}
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'de.mobilej.unmock:UnMockPlugin:0.6.5'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
classpath "com.google.gms:oss-licenses:0.9.2"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}