aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAng Li <angli@google.com>2017-12-15 20:06:51 -0800
committerGitHub <noreply@github.com>2017-12-15 20:06:51 -0800
commitc0d86eb455d97c0969291755162cd6c7ae7ca689 (patch)
treeee12f05979e2ca93c8ef06f26fa633e04c6beaa7 /build.gradle
parentaeddc8bcd123ddf6c865622464001fe0f3835b87 (diff)
downloadmobly-snippet-lib-c0d86eb455d97c0969291755162cd6c7ae7ca689.tar.gz
Revert "Update gradle, dependency versions and fix lint reported issues (#80)" (#82)
This reverts commit aeddc8bcd123ddf6c865622464001fe0f3835b87.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 21ab790..4ed31c7 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,13 +1,11 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
-// For android studio 2.3 and plugin 2.3.3
buildscript {
repositories {
jcenter()
- google()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.0.0'
+ classpath 'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@@ -17,7 +15,6 @@ buildscript {
allprojects {
repositories {
jcenter()
- google()
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
@@ -26,3 +23,6 @@ allprojects {
}
}
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}