NetGuard/build.gradle

31 lines
898 B
Groovy
Raw Normal View History

2015-10-24 18:01:55 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
// http://tools.android.com/tech-docs/new-build-system/gradle-experimental
2017-08-10 12:03:48 +00:00
// https://bintray.com/android/android-tools/com.android.tools.build.gradle-experimental/view
// https://bintray.com/android/android-tools/com.google.gms.google-services/view
2017-10-28 14:08:19 +00:00
classpath 'com.android.tools.build:gradle:3.0.+'
classpath 'com.google.gms:google-services:3.1.+'
2015-10-24 18:01:55 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
2017-06-17 08:57:10 +00:00
maven {
url 'https://maven.google.com'
}
2015-10-24 18:01:55 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}