0032726e3e
* Update build tools and support library * Remove specifying build tools version * Remove obsolete comment
33 lines
941 B
Groovy
33 lines
941 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.3.0'
|
|
ext.support_version = '27.1.1'
|
|
ext.build_tools_version = '3.2.1'
|
|
ext.anko_version = '0.10.8'
|
|
ext.protobuf_lite_version = '3.0.1'
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
maven { url 'https://jitpack.io' }
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:$build_tools_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.6'
|
|
classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven {
|
|
url "https://jitpack.io"
|
|
}
|
|
}
|
|
}
|