You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/06/29 03:58:54 UTC

git commit: Remove notification plugin.xml values

Updated Branches:
  refs/heads/master fd572c348 -> 8251882e9


Remove notification plugin.xml values


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/commit/8251882e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/tree/8251882e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/diff/8251882e

Branch: refs/heads/master
Commit: 8251882e9806f1dcdf5b7ae5e479351ec05bc2ec
Parents: fd572c3
Author: Andrew Grieve <ag...@chromium.org>
Authored: Fri Jun 28 20:10:44 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Fri Jun 28 20:10:44 2013 -0400

----------------------------------------------------------------------
 plugin.xml | 73 ---------------------------------------------------------
 1 file changed, 73 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/blob/8251882e/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 3633807..45d1976 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -5,77 +5,4 @@
       version="0.1.0">
 
     <name>vibration</name>
-    
-    <js-module src="www/notification.js" name="notification">
-        <clobbers target="navigator.notification" />
-    </js-module>
-            
-    <!-- android -->
-    <platform name="android">
-        <config-file target="res/xml/config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="android-package" value="org.apache.cordova.core.Notification"/>
-            </feature>
-        </config-file>
-        
-        <config-file target="AndroidManifest.xml" parent="/*">
-            <uses-permission android:name="android.permission.VIBRATE" />
-        </config-file>
-        
-        <source-file src="src/android/Notification.java" target-dir="src/org/apache/cordova/core" />
-
-        <!-- android specific notification apis -->
-        <js-module src="www/android/notification.js" name="notification_android">
-            <merges target="navigator.notification" />
-        </js-module>
-        
-    </platform>
-
-    <!-- ios -->
-    <platform name="ios">    
-        <config-file target="config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="ios-package" value="CDVNotification"/>
-            </feature>
-        </config-file>
-        <header-file src="src/ios/CDVNotification.h" />
-	    <source-file src="src/ios/CDVNotification.m" />
-	    <resource-file src="src/ios/CDVNotification.bundle" />
-	            
-    </platform>
-
-    <!-- wp7 -->
-    <platform name="wp7">
-        <config-file target="config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="wp-package" value="Notification"/>
-            </feature>
-        </config-file>
-
-        <config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
-            <Capability Name="ID_CAP_PUSH_NOTIFICATION"/>
-        </config-file>
-
-        <source-file src="src/wp7/Notification.cs" />
-        <source-file src="src/wp7/NotificationBox.xaml.cs" />
-        <source-file src="src/wp7/NotificationBox.xaml" />
-    </platform>
-
-    <!-- wp8 -->
-    <platform name="wp8">
-        <config-file target="config.xml" parent="/*">
-            <feature name="Notification">
-                <param name="wp-package" value="Notification"/>
-            </feature>
-        </config-file>
-
-        <config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
-            <Capability Name="ID_CAP_PUSH_NOTIFICATION"/>
-        </config-file>
-
-        <source-file src="src/wp8/Notification.cs" />
-        <source-file src="src/wp8/NotificationBox.xaml.cs" />
-        <source-file src="src/wp8/NotificationBox.xaml" />
-    </platform>
-    
 </plugin>