aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/build.gradle13
1 files changed, 8 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle
index dc8a503..7530fa3 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -72,11 +72,14 @@ android {
72 } 72 }
73 73
74 packagingOptions { 74 packagingOptions {
75 // clashing in dependencies (Apache Mina FtpServer) 75 resources {
76 exclude 'META-INF/DEPENDENCIES' 76 excludes += [
77 exclude 'META-INF/spring.schemas' 77 'META-INF/DEPENDENCIES',
78 exclude 'META-INF/spring.handlers' 78 'META-INF/spring.schemas',
79 exclude 'META-INF/license.txt' 79 'META-INF/spring.handlers',
80 'META-INF/license.txt',
81 ]
82 }
80 } 83 }
81} 84}
82 85