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 () + { + + } + } +}