aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorpacien2023-07-29 23:03:12 +0200
committerpacien2023-07-30 03:53:20 +0200
commitdfb26a0d2c95d56f69f5e1e0c255d9d5d6788120 (patch)
tree5db0f2b80090592c0a8cb30851369f088e65feb7 /app/build.gradle
parent218709850d9db0ad1cddadc115546c446e9461cd (diff)
downloadtincapp-dfb26a0d2c95d56f69f5e1e0c255d9d5d6788120.tar.gz
storage: remove embedded FTP server
Moving back the configuration files and logs to the user-accessible storage. Everything should be accessible through a file manager using the "USB storage" mode. The embedded FTP server is no longer necessary.
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 5d2da3f..5d49965 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -71,17 +71,6 @@ android {
71 dataBinding = true 71 dataBinding = true
72 } 72 }
73 73
74 packagingOptions {
75 resources {
76 excludes += [
77 'META-INF/DEPENDENCIES',
78 'META-INF/spring.schemas',
79 'META-INF/spring.handlers',
80 'META-INF/license.txt',
81 ]
82 }
83 }
84
85 namespace 'org.pacien.tincapp' 74 namespace 'org.pacien.tincapp'
86} 75}
87 76
@@ -101,7 +90,6 @@ dependencies {
101 implementation('org.apache.commons:commons-configuration2:2.3') { exclude group: 'commons-logging', module: 'commons-logging' } 90 implementation('org.apache.commons:commons-configuration2:2.3') { exclude group: 'commons-logging', module: 'commons-logging' }
102 implementation('commons-beanutils:commons-beanutils:1.9.3') { exclude group: 'commons-logging', module: 'commons-logging' } 91 implementation('commons-beanutils:commons-beanutils:1.9.3') { exclude group: 'commons-logging', module: 'commons-logging' }
103 implementation('commons-io:commons-io:2.6') { exclude group: 'commons-logging', module: 'commons-logging' } 92 implementation('commons-io:commons-io:2.6') { exclude group: 'commons-logging', module: 'commons-logging' }
104 implementation('org.apache.ftpserver:ftpserver:1.1.1') { exclude group: 'org.slf4j', module: 'slf4j-log4j12' }
105} 93}
106 94
107repositories { 95repositories {