From 20ecd9840f1e237dba79674b71e49b43b074902e Mon Sep 17 00:00:00 2001 From: pacien Date: Tue, 8 Dec 2020 16:16:08 +0100 Subject: app: add configuration FTP server This is a ridiculous workaround to make the configuration (and other files) accessible to the user necessary after the new storage access restriction enforced in Android 11 which prevent other applications from accessing the supposedly public application's directory. The app's internal private storage directory is now exposed to the user through an embedded FTP server that the user can turn on and off from the configuration activity. The user can then play with the configuration and retrieve logs through a remote or local FTP client application of their choice. GitHub: closes #103 --- app/proguard-rules.pro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/proguard-rules.pro') diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 5100915..ffbb3e3 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -1,5 +1,5 @@ # Tinc App, an Android binding and user interface for the tinc mesh VPN daemon -# Copyright (C) 2017-2019 Pacien TRAN-GIRARD +# Copyright (C) 2017-2020 Pacien TRAN-GIRARD # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,6 +15,8 @@ # along with this program. If not, see . -keep class org.apache.commons.** { *; } +-keep class org.apache.mina.** { *; } +-keep class org.apache.ftpserver.** { *; } -keep class org.bouncycastle.** -keep class ch.qos.** { *; } -keep class org.slf4j.** { *; } -- cgit v1.2.3