summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/phonegap-plugin-push/hooks/windows/setToastCapable.js
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/plugins/phonegap-plugin-push/hooks/windows/setToastCapable.js')
-rw-r--r--StoneIsland/plugins/phonegap-plugin-push/hooks/windows/setToastCapable.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/StoneIsland/plugins/phonegap-plugin-push/hooks/windows/setToastCapable.js b/StoneIsland/plugins/phonegap-plugin-push/hooks/windows/setToastCapable.js
deleted file mode 100644
index b8cbcbc0..00000000
--- a/StoneIsland/plugins/phonegap-plugin-push/hooks/windows/setToastCapable.js
+++ /dev/null
@@ -1,12 +0,0 @@
-module.exports = function(context) {
- console.log('Updating appxmanifests with ToastCapable=true...');
- var path = require('path');
- var platformProjPath = path.join(context.opts.projectRoot, 'platforms/windows');
- var AppxManifest = require(path.join(platformProjPath, 'cordova/lib/AppxManifest'));
-
- ['package.phone.appxmanifest', 'package.windows.appxmanifest'].forEach(function(manifestPath) {
- var manifest = AppxManifest.get(path.join(platformProjPath, manifestPath));
- manifest.getVisualElements().setToastCapable(true);
- manifest.write();
- });
-}