From 433e216439cc3a6b7650e679395dc65ae19cbd94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastia=CC=81n=20Katzer?= Date: Tue, 8 Oct 2013 17:59:20 +0200 Subject: [PATCH] ... --- plugin.xml | 7 +------ src/wp8/BackgroundMode.cs | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/plugin.xml b/plugin.xml index 9c6f4c6..d0a4307 100644 --- a/plugin.xml +++ b/plugin.xml @@ -59,7 +59,7 @@ - + @@ -76,11 +76,6 @@ - - diff --git a/src/wp8/BackgroundMode.cs b/src/wp8/BackgroundMode.cs index e69de29..20b83bc 100644 --- a/src/wp8/BackgroundMode.cs +++ b/src/wp8/BackgroundMode.cs @@ -0,0 +1,27 @@ +/** + * BackgroundMode.cs + * Cordova Background-Mode Plugin + * + * Created by Sebastian Katzer (github.com/katzer) on 08/10/2013. + * Copyright 2013 Sebastian Katzer. All rights reserved. + * GPL v2 licensed + */ + +using System; +using System.Linq; + +using Microsoft.Phone.Shell; + +using WPCordovaClassLib.Cordova; +using WPCordovaClassLib.Cordova.Commands; + +namespace APPPlant.Cordova.Plugin +{ + public class BackgroundMode : BaseCommand + { + public BackgroundMode () + { + + } + } +}