aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle6
1 files changed, 0 insertions, 6 deletions
diff --git a/app/build.gradle b/app/build.gradle
index b218ff91..9f2338f4 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,5 +1,4 @@
apply plugin: 'com.android.application'
-apply from: 'copyLibs.gradle' // enable 'copyLibs.gradle' script plugin
apply plugin: 'eclipse'
android {
@@ -67,8 +66,3 @@ dependencies {
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile 'com.jayway.android.robotium:robotium-solo:5.3.1'
}
-tasks.findAll { // make all tasks whose name starts with 'assemble'...
- it.name.startsWith 'assemble'
-}.each { // ... depending on 'copyDependenciesIntoLibs' task from 'copyLibs.gradle' script plugin
- it.dependsOn copyDependenciesIntoLibs
-}