diff options
author | Mohamed Zenadi <mohamed@zenadi.com> | 2017-07-25 14:50:51 +0100 |
---|---|---|
committer | Mohamed Zenadi <mohamed@zenadi.com> | 2017-07-25 14:50:51 +0100 |
commit | 961b4a772a1ca5e556bb72c9f774a773f982551c (patch) | |
tree | 13491edd002206eebb8fbe626fd3eecd423b6b71 /app/build.gradle | |
parent | 1eae115424fcd522a0a95b1a30d74486a5fa7875 (diff) |
remove copyLibs gradle file
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 6 |
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 -} |