From 500bcfcce70c4fc64ad305b2d22f4fb9e52b9d3b Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Sat, 9 Nov 2013 04:53:38 +0100 Subject: [PATCH] added missing SkyDriveFileStorage C# wrapper --- .../Io/SkyDriveFileStorage.cs | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/Kp2aBusinessLogic/Io/SkyDriveFileStorage.cs diff --git a/src/Kp2aBusinessLogic/Io/SkyDriveFileStorage.cs b/src/Kp2aBusinessLogic/Io/SkyDriveFileStorage.cs new file mode 100644 index 00000000..663036fe --- /dev/null +++ b/src/Kp2aBusinessLogic/Io/SkyDriveFileStorage.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; + +using Android.App; +using Android.Content; +using Android.OS; +using Android.Runtime; +using Android.Views; +using Android.Widget; +using KeePassLib.Serialization; +#if !EXCLUDE_JAVAFILESTORAGE +using Keepass2android.Javafilestorage; + +namespace keepass2android.Io +{ + public class SkyDriveFileStorage: JavaFileStorage + { + private const string ClientId = "000000004010C234"; + + public SkyDriveFileStorage(Context ctx, IKp2aApp app) : + base(new Keepass2android.Javafilestorage.SkyDriveFileStorage(ClientId, ctx), app) + { + } + + + } +} +#endif \ No newline at end of file