diff options
author | Matthew Wong <wongma@protonmail.ch> | 2015-11-21 04:18:07 -0500 |
---|---|---|
committer | Matthew Wong <wongma@protonmail.ch> | 2015-11-21 04:18:07 -0500 |
commit | 7ee5ff76ba3468467a2b0396704e5c21962ba046 (patch) | |
tree | 0c887a24e3bfbb852564838ecb71ba6ead2296a4 /app/build.gradle | |
parent | b78465b744c418a562e920e763abd62cb2b5cb2e (diff) |
default to reasonable external directory
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index 13a92edb..db9fa9c1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -25,6 +25,8 @@ android { packagingOptions { exclude '.readme' + exclude 'META-INF/LICENSE.txt' + exclude 'META-INF/NOTICE.txt' } // @@ -67,7 +69,9 @@ dependencies { compile 'com.jcraft:jsch:0.1.53' compile 'org.apache.commons:commons-io:1.3.2' compile 'com.jayway.android.robotium:robotium-solo:5.3.1' - compile 'net.rdrei.android.dirchooser:library:2.1@aar' + compile ('net.rdrei.android.dirchooser:library:3.0@aar') { + transitive = true; + } compile group: 'com.google.guava', name: 'guava', version: '18.0' } tasks.findAll { // make all tasks whose name starts with 'assemble'... |