aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorpacien2023-07-29 23:03:12 +0200
committerpacien2023-07-30 03:53:20 +0200
commitdfb26a0d2c95d56f69f5e1e0c255d9d5d6788120 (patch)
tree5db0f2b80090592c0a8cb30851369f088e65feb7 /app/src/main/AndroidManifest.xml
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/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml7
1 files changed, 0 insertions, 7 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 8d71109..827f421 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -26,9 +26,6 @@
26 <!-- required for VPN service error reporting, since API 33 --> 26 <!-- required for VPN service error reporting, since API 33 -->
27 <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> 27 <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
28 28
29 <!-- needed for the configuration FTP server -->
30 <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
31
32 <!-- workaround for broken file permissions on some Android ROMs --> 29 <!-- workaround for broken file permissions on some Android ROMs -->
33 <uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 30 <uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
34 31
@@ -91,10 +88,6 @@
91 </intent-filter> 88 </intent-filter>
92 </service> 89 </service>
93 90
94 <service
95 android:name="org.pacien.tincapp.service.ConfigurationAccessService">
96 </service>
97
98 </application> 91 </application>
99 92
100</manifest> 93</manifest>