2016-10-29 17:55:37 +00:00
|
|
|
buildscript {
|
|
|
|
ext {
|
2020-03-04 21:31:43 +00:00
|
|
|
kotlin_version = '1.3.70'
|
2020-02-16 04:58:04 +00:00
|
|
|
mockito_version = '3.2.4'
|
2016-10-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2019-05-06 07:01:33 +00:00
|
|
|
google()
|
2020-03-05 00:30:30 +00:00
|
|
|
maven { url 'https://storage.googleapis.com/r8-releases/raw' }
|
2019-09-17 12:40:34 +00:00
|
|
|
maven { url 'https://www.jitpack.io' }
|
2016-10-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2020-03-05 00:30:30 +00:00
|
|
|
classpath 'com.android.tools:r8:2.0.39' // Must be before the Gradle Plugin for Android.
|
2020-02-29 02:05:08 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.6.1'
|
2019-10-29 16:40:08 +00:00
|
|
|
classpath 'com.github.trevjonez.composer-gradle-plugin:plugin:0.13.1'
|
2020-02-29 02:05:22 +00:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.28.0'
|
2020-02-29 02:05:33 +00:00
|
|
|
classpath 'de.mobilej.unmock:UnMockPlugin:0.7.5'
|
2020-02-16 05:02:15 +00:00
|
|
|
classpath 'com.github.triplet.gradle:play-publisher:1.2.2'
|
2016-10-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-06 07:01:33 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
2020-02-16 03:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: 'https://raw.githubusercontent.com/ligi/gradle-common/master/versions_plugin_stable_only.gradle'
|