Revert "CB-8683 updated wp and bb specific references of old id to new id"

This reverts commit a2a75a12d8155d497ebf6d8830be406d2e5c9166.
diff --git a/src/wp/Notification.cs b/src/wp/Notification.cs
index b621684..4d5f407 100644
--- a/src/wp/Notification.cs
+++ b/src/wp/Notification.cs
@@ -367,7 +367,7 @@
             string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
             int times = int.Parse(args[0]);
 
-            string resourcePath = BaseCommand.GetBaseURL() + "Plugins/cordova-plugin-dialogs/notification-beep.wav";
+            string resourcePath = BaseCommand.GetBaseURL() + "Plugins/org.apache.cordova.dialogs/notification-beep.wav";
 
             StreamResourceInfo sri = Application.GetResourceStream(new Uri(resourcePath, UriKind.Relative));
 
diff --git a/www/blackberry10/beep.js b/www/blackberry10/beep.js
index 401049e..6605107 100644
--- a/www/blackberry10/beep.js
+++ b/www/blackberry10/beep.js
@@ -24,7 +24,7 @@
         beepObj,
         play = function () { 
             //create new object every time due to strage playback behaviour
-            beepObj = new Audio('local:///chrome/plugin/cordova-plugin-dialogs/notification-beep.wav');
+            beepObj = new Audio('local:///chrome/plugin/org.apache.cordova.dialogs/notification-beep.wav');
             beepObj.addEventListener("ended", callback);
             beepObj.play();
         },