You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/build.gradle

25 lines
631 B
Groovy

apply plugin: "com.github.ben-manes.versions"
wrapper {
gradleVersion = "4.10.1"
distributionType = Wrapper.DistributionType.ALL
}
buildscript {
repositories {
jcenter()
google()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.google.gms:google-services:4.2.0'
// https://docs.fabric.io/android/changelog.html#fabric-gradle-plugin
classpath 'io.fabric.tools:gradle:1.27.1'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
}
}