forked from walleth/walleth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (43 loc) · 1.46 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.3.70'
support_version = '28.0.0'
firebase_version = '15.0.2'
kethereum_version = '0.81.2'
multidex_version = '1.0.3'
arch_version = '1.1.1'
room_version = '2.2.4'
mockito_version = '3.3.0'
truth = '1.0.1'
kodein_version = '5.1.1'
}
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
gradlePluginPortal()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'de.mobilej.unmock:UnMockPlugin:0.7.5'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.28.0'
classpath 'com.github.trevjonez.composer-gradle-plugin:plugin:0.13.1'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:1.0.2'
classpath "com.jaredsburrows:gradle-license-plugin:0.8.70"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
allprojects {
repositories {
jcenter()
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url 'https://jitpack.io' }
google()
}
}
apply from: 'https://raw.githubusercontent.com/ligi/gradle-common/master/versions_plugin_stable_only.gradle'