nextdns-mgmt/build.gradle

31 lines
714 B
Groovy
Raw Normal View History

2017-04-03 15:07:32 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
maven {
url 'https://maven.fabric.io/public'
}
2017-04-03 15:07:32 +01:00
}
dependencies {
2018-09-08 03:46:27 +01:00
classpath 'com.android.tools.build:gradle:3.1.4'
2018-07-08 04:22:52 +01:00
classpath 'com.google.gms:google-services:4.0.1'
classpath 'io.fabric.tools:gradle:1.25.1'
2017-04-03 15:07:32 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
2017-04-03 15:07:32 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}