This is an automated email from the ASF dual-hosted git repository.

erisu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-paramedic.git


The following commit(s) were added to refs/heads/master by this push:
     new 343f8e6  feat!: drop more unused code and left over deprecated windows 
content (#280)
343f8e6 is described below

commit 343f8e61391c4113328f9692de3ec77cefd8cb80
Author: エリス <[email protected]>
AuthorDate: Fri Dec 5 10:25:00 2025 +0900

    feat!: drop more unused code and left over deprecated windows content (#280)
    
    * feat!: remove unused test plugins
    * chore!: remove leftover windows content
---
 .../scripts/EnableDebuggingForPackage.ps1          | 83 ----------------------
 debug-mode-plugin/scripts/disable-debug-mode.js    | 32 ---------
 debug-mode-plugin/scripts/enable-debug-mode.js     | 46 ------------
 main.js                                            |  7 +-
 spec/build-fail-plugin/package.json                | 11 ---
 spec/build-fail-plugin/plugin.xml                  | 44 ------------
 .../build-fail-plugin/src/ios/CDVBuildFailPlugin.h | 23 ------
 .../build-fail-plugin/src/ios/CDVBuildFailPlugin.m | 23 ------
 spec/build-success-plugin/package.json             | 11 ---
 spec/build-success-plugin/plugin.xml               | 44 ------------
 .../src/ios/CDVBuildSuccessPlugin.h                | 23 ------
 .../src/ios/CDVBuildSuccessPlugin.m                | 23 ------
 spec/sh-read-input-plugin/install.sh               | 23 ------
 spec/sh-read-input-plugin/package.json             | 11 ---
 spec/sh-read-input-plugin/plugin.xml               | 42 -----------
 spec/testable-plugin/plugin.xml                    |  4 --
 16 files changed, 3 insertions(+), 447 deletions(-)

diff --git a/debug-mode-plugin/scripts/EnableDebuggingForPackage.ps1 
b/debug-mode-plugin/scripts/EnableDebuggingForPackage.ps1
deleted file mode 100644
index 80414bd..0000000
--- a/debug-mode-plugin/scripts/EnableDebuggingForPackage.ps1
+++ /dev/null
@@ -1,83 +0,0 @@
-<#
-       Licensed to the Apache Software Foundation (ASF) under one
-       or more contributor license agreements.  See the NOTICE file
-       distributed with this work for additional information
-       regarding copyright ownership.  The ASF licenses this file
-       to you under the Apache License, Version 2.0 (the
-       "License"); you may not use this file except in compliance
-       with the License.  You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-       Unless required by applicable law or agreed to in writing,
-       software distributed under the License is distributed on an
-       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-       KIND, either express or implied.  See the License for the
-       specific language governing permissions and limitations
-       under the License.
-#>
-
-param(
-    [Parameter(Mandatory=$true, Position=0, 
ValueFromPipelineByPropertyName=$true)]
-    [string] $ID <# package.appxmanifest//Identity@name #>
-)
-
-$code = @"
-using System;
-using System.Runtime.InteropServices;
-namespace PackageDebug
-{
-    public enum PACKAGE_EXECUTION_STATE
-    {
-        PES_UNKNOWN,
-        PES_RUNNING,
-        PES_SUSPENDING,
-        PES_SUSPENDED,
-        PES_TERMINATED
-    }
-
-    [ComImport, Guid("B1AEC16F-2383-4852-B0E9-8F0B1DC66B4D")]
-    public class PackageDebugSettings
-    {
-    }
-
-    [ComImport, 
Guid("F27C3930-8029-4AD1-94E3-3DBA417810C1"),InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
-    public interface IPackageDebugSettings
-    {
-        int EnableDebugging([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName, [MarshalAs(UnmanagedType.LPWStr)] string debuggerCommandLine, 
IntPtr environment);
-        int DisableDebugging([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName);
-        int Suspend([MarshalAs(UnmanagedType.LPWStr)] string packageFullName);
-        int Resume([MarshalAs(UnmanagedType.LPWStr)] string packageFullName);
-        int TerminateAllProcesses([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName);
-        int SetTargetSessionId(int sessionId);
-        int EnumerageBackgroundTasks([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName,
-                                                      out uint taskCount, out 
int intPtr, [Out] string[] array);
-        int ActivateBackgroundTask(IntPtr something);
-        int StartServicing([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName);
-        int StopServicing([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName);
-        int StartSessionRedirection([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName, uint sessionId);
-        int StopSessionRedirection([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName);
-        int GetPackageExecutionState([MarshalAs(UnmanagedType.LPWStr)] string 
packageFullName,
-                                            out PACKAGE_EXECUTION_STATE 
packageExecutionState);
-        int RegisterForPackageStateChanges([MarshalAs(UnmanagedType.LPWStr)] 
string packageFullName,
-                               IntPtr 
pPackageExecutionStateChangeNotification, out uint pdwCookie);
-        int UnregisterForPackageStateChanges(uint dwCookie);
-    }
-
-    public class DebugTool
-    {
-        public static void EnableDebug(String packageFullName)
-        {
-            // Set debug mode for App and activate installed application
-            var debugSettings = (IPackageDebugSettings)(new 
PackageDebugSettings());
-            debugSettings.EnableDebugging(packageFullName, null, (IntPtr)null);
-        }
-    }
-}
-"@
-
-Add-Type -TypeDefinition $code
-
-$packageFullName = $(Get-AppxPackage $ID).PackageFullName
-Write-Host "Setting debug mode for application:" $ID
-[PackageDebug.DebugTool]::EnableDebug($packageFullName) | Out-Null
diff --git a/debug-mode-plugin/scripts/disable-debug-mode.js 
b/debug-mode-plugin/scripts/disable-debug-mode.js
deleted file mode 100644
index 71f2948..0000000
--- a/debug-mode-plugin/scripts/disable-debug-mode.js
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
-*/
-
-module.exports = function (context) {
-    const path = require('path');
-    const shell = require('shelljs');
-
-    const libPath = path.resolve(context.opts.projectRoot, 'platforms', 
'windows', 'cordova', 'lib');
-    const appUtilsPath = path.join(libPath, 'WindowsStoreAppUtils.ps1');
-    const appUtilsBackupPath = path.join(libPath, 
'WindowsStoreAppUtils.ps1.bak');
-    const destScriptPath = path.join(libPath, 'EnableDebuggingForPackage.ps1');
-
-    // Remove the patch and copu over backup StoreAppUtils script
-    shell.rm('-f', destScriptPath);
-    shell.cp('-f', appUtilsBackupPath, appUtilsPath);
-};
diff --git a/debug-mode-plugin/scripts/enable-debug-mode.js 
b/debug-mode-plugin/scripts/enable-debug-mode.js
deleted file mode 100644
index 5d5f7f7..0000000
--- a/debug-mode-plugin/scripts/enable-debug-mode.js
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
-*/
-
-module.exports = function (context) {
-    const path = require('path');
-    const shell = require('shelljs');
-
-    const libPath = path.resolve(context.opts.projectRoot, 'platforms', 
'windows', 'cordova', 'lib');
-    const appUtilsPath = path.join(libPath, 'WindowsStoreAppUtils.ps1');
-    const appUtilsBackupPath = path.join(libPath, 
'WindowsStoreAppUtils.ps1.bak');
-    const srcScriptPath = path.join(__dirname, 
'EnableDebuggingForPackage.ps1');
-    const destScriptPath = path.join(libPath, 'EnableDebuggingForPackage.ps1');
-
-    // copy over the patch
-    shell.cp('-f', srcScriptPath, libPath);
-    shell.cp('-f', appUtilsPath, appUtilsBackupPath);
-
-    // add extra code to patch
-    shell.sed(
-        '-i',
-        /^\s*\$appActivator .*$/gim,
-        '$&\n\n' +
-        '    # START ENABLE DEBUG MODE SECTION\n' +
-        '    powershell ' + destScriptPath + ' $$ID\n' +
-        '    $Ole32 = Add-Type -MemberDefinition 
"[DllImport(\'Ole32.dll\')]public static extern int 
CoAllowSetForegroundWindow(IntPtr pUnk, IntPtr lpvReserved);" -Name "Ole32" 
-Namespace "Win32" -PassThru\n' +
-        '    
$Ole32::CoAllowSetForegroundWindow([System.Runtime.InteropServices.Marshal]::GetIUnknownForObject($appActivator),
 [System.IntPtr]::Zero)\n' +
-        '    # END ENABLE DEBUG MODE SECTION\n',
-        appUtilsPath
-    );
-};
diff --git a/main.js b/main.js
index a70a2df..ebbfa55 100755
--- a/main.js
+++ b/main.js
@@ -29,11 +29,11 @@ var USAGE           = "Error missing args. \n" +
     "\n" +
     "cordova-paramedic --platform PLATFORM --plugin PATH [--justbuild 
--timeout MSECS --startport PORTNUM --endport PORTNUM --version ...]\n" +
     "\n" +
-    "--platform PLATFORM : the platform id. Currently supports 'ios', 
'browser', 'windows', 'android'.\n" +
+    "--platform PLATFORM : the platform id. Currently supports 'ios', 
'browser' 'android'.\n" +
                     "\tPath to platform can be specified as link to git repo 
like:\n" +
-                    
"\twindows@https://github.com/apache/cordova-windows.git\n"; +
+                    
"\tandroid@https://github.com/apache/cordova-android.git\n"; +
                     "\tor path to local copied git repo like:\n" +
-                    "\twindows@../cordova-windows/\n" +
+                    "\tandroid@../cordova-android/\n" +
     "--plugin PATH : the relative or absolute path to a plugin folder\n" +
                     "\texpected to have a 'tests' folder.\n" +
                     "\tYou may specify multiple --plugin flags and they will 
all\n" +
@@ -46,7 +46,6 @@ var USAGE           = "Error missing args. \n" +
     "--config : (optional) read configuration from paramedic configuration 
file\n" +
     "--fileTransferServer : (optional) (cordova-plugin-file-transfer only) A 
server address tests should connect to\n" +
     "--justbuild : (optional) just builds the project, without running the 
tests \n" +
-    "--logMins : (optional) Windows only - specifies number of minutes to get 
logs\n" +
     "--outputDir : (optional) path to save Junit results file & Device logs\n" 
+
     "--skipMainTests : (optional) Do not run main (cordova-test-framework) 
tests\n" +
     "--startport/--endport `PORTNUM` : (optional) ports to find available and 
use for posting results from emulator back to paramedic server (default is from 
8008 to 8009)\n" +
diff --git a/spec/build-fail-plugin/package.json 
b/spec/build-fail-plugin/package.json
deleted file mode 100644
index ba1b835..0000000
--- a/spec/build-fail-plugin/package.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "name": "build-fail-plugin",
-  "version": "1.0.0",
-  "description": "",
-  "main": "index.js",
-  "scripts": {
-    "test": "echo \"Error: no test specified\" && exit 1"
-  },
-  "author": "",
-  "license": ""
-}
diff --git a/spec/build-fail-plugin/plugin.xml 
b/spec/build-fail-plugin/plugin.xml
deleted file mode 100644
index 6833349..0000000
--- a/spec/build-fail-plugin/plugin.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing,
-  software distributed under the License is distributed on an
-  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  KIND, either express or implied.  See the License for the
-  specific language governing permissions and limitations
-  under the License.
--->
-
-<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0";
-    xmlns:rim="http://www.blackberry.com/ns/widgets";
-    xmlns:android="http://schemas.android.com/apk/res/android";
-    id="org.apache.cordova.build-fail-plugin"
-    version="0.0.1">
-    <name>Build Fail Plugin</name>
-    <description>Cordova Build Fail Plugin</description>
-    <license>Apache 2.0</license>
-    <keywords>cordova</keywords>
-    <repo></repo>
-    <issue></issue>
-
-
-    <!-- ios -->
-    <platform name="ios">
-        <header-file src="src/ios/CDVBuildFailPlugin.h" />
-        <source-file src="src/ios/CDVBuildFailPlugin.m" />
-    </platform>
-
-    <platform name="android"/>
-    <platform name="wp8"/>
-
-
-</plugin>
diff --git a/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.h 
b/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.h
deleted file mode 100644
index 0d36a9c..0000000
--- a/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
- */
-
-// will fail because there is no #import
-
-@interface CDVBuildFailPlugin : CDVPlugin
-@end
diff --git a/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.m 
b/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.m
deleted file mode 100644
index 84aa00a..0000000
--- a/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.m
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
- */
-
-#import "CDVBuildFailPlugin.h"
-
-@implementation CDVBuildFailPlugin
-@end
diff --git a/spec/build-success-plugin/package.json 
b/spec/build-success-plugin/package.json
deleted file mode 100644
index c4a02ff..0000000
--- a/spec/build-success-plugin/package.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "name": "build-success-plugin",
-  "version": "1.0.0",
-  "description": "",
-  "main": "index.js",
-  "scripts": {
-    "test": "echo \"Error: no test specified\" && exit 1"
-  },
-  "author": "",
-  "license": ""
-}
diff --git a/spec/build-success-plugin/plugin.xml 
b/spec/build-success-plugin/plugin.xml
deleted file mode 100644
index 3dafc68..0000000
--- a/spec/build-success-plugin/plugin.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing,
-  software distributed under the License is distributed on an
-  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  KIND, either express or implied.  See the License for the
-  specific language governing permissions and limitations
-  under the License.
--->
-
-<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0";
-    xmlns:rim="http://www.blackberry.com/ns/widgets";
-    xmlns:android="http://schemas.android.com/apk/res/android";
-    id="org.apache.cordova.build-success-plugin"
-    version="0.0.1">
-    <name>Build Success Plugin</name>
-    <description>Cordova Build Success Plugin</description>
-    <license>Apache 2.0</license>
-    <keywords>cordova</keywords>
-    <repo></repo>
-    <issue></issue>
-
-
-    <!-- ios -->
-    <platform name="ios">
-        <header-file src="src/ios/CDVBuildSuccessPlugin.h" />
-        <source-file src="src/ios/CDVBuildSuccessPlugin.m" />
-    </platform>
-
-    <platform name="android"/>
-    <platform name="wp8"/>
-
-
-</plugin>
diff --git a/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.h 
b/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.h
deleted file mode 100644
index a293441..0000000
--- a/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
- */
-
-#import <Cordova/CDVPlugin.h>
-
-@interface CDVBuildSuccessPlugin : CDVPlugin
-@end
diff --git a/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.m 
b/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.m
deleted file mode 100644
index 6fe6fc8..0000000
--- a/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.m
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
- */
-
-#import "CDVBuildSuccessPlugin.h"
-
-@implementation CDVBuildSuccessPlugin
-@end
diff --git a/spec/sh-read-input-plugin/install.sh 
b/spec/sh-read-input-plugin/install.sh
deleted file mode 100755
index c0d3984..0000000
--- a/spec/sh-read-input-plugin/install.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-
-#   http://www.apache.org/licenses/LICENSE-2.0
-
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-echo "This is will ask for input."
-printf "Specify your input]: "
-
-read myinput
\ No newline at end of file
diff --git a/spec/sh-read-input-plugin/package.json 
b/spec/sh-read-input-plugin/package.json
deleted file mode 100644
index 3638c88..0000000
--- a/spec/sh-read-input-plugin/package.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "name": "sh-read-input-plugin",
-  "version": "1.0.0",
-  "description": "",
-  "main": "index.js",
-  "scripts": {
-    "test": "echo \"Error: no test specified\" && exit 1"
-  },
-  "author": "",
-  "license": ""
-}
diff --git a/spec/sh-read-input-plugin/plugin.xml 
b/spec/sh-read-input-plugin/plugin.xml
deleted file mode 100644
index 052c268..0000000
--- a/spec/sh-read-input-plugin/plugin.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing,
-  software distributed under the License is distributed on an
-  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  KIND, either express or implied.  See the License for the
-  specific language governing permissions and limitations
-  under the License.
--->
-
-<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0";
-    xmlns:rim="http://www.blackberry.com/ns/widgets";
-    xmlns:android="http://schemas.android.com/apk/res/android";
-    id="org.apache.cordova.sh-read-input-plugin"
-    version="0.0.1">
-    <name>Shell Read Input Plugin</name>
-    <description>Cordova Shell Read Input Plugin</description>
-    <license>Apache 2.0</license>
-    <keywords>cordova</keywords>
-    <repo></repo>
-    <issue></issue>
-
-    <!-- ios -->
-    <platform name="ios">
-        <hook type="before_plugin_install" src="install.sh" />
-    </platform>
-
-    <platform name="android"/>
-    <platform name="wp8"/>
-
-
-</plugin>
diff --git a/spec/testable-plugin/plugin.xml b/spec/testable-plugin/plugin.xml
index 01fd447..af0c373 100644
--- a/spec/testable-plugin/plugin.xml
+++ b/spec/testable-plugin/plugin.xml
@@ -36,9 +36,5 @@
 
     <!-- ios -->
     <platform name="ios"/>
-
     <platform name="android"/>
-    <platform name="wp8"/>
-
-
 </plugin>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to