* added SFTP support

* Fixed bug with reference URL fields (for SearchURL)
* check for ART and display warning
This commit is contained in:
Philipp Crocoll
2013-12-31 09:46:57 +01:00
parent 5e7f489e76
commit e27c4fa727
169 changed files with 29140 additions and 262 deletions

View File

@@ -0,0 +1,18 @@
using Android.Content;
#if !EXCLUDE_JAVAFILESTORAGE
namespace keepass2android.Io
{
public class SftpFileStorage: JavaFileStorage
{
public SftpFileStorage(IKp2aApp app) :
base(new Keepass2android.Javafilestorage.SftpStorage(), app)
{
}
}
}
#endif