From bc2d65f37a1b48e442e2604d71c1eb3e3d9b4b7a Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Thu, 14 Oct 2021 15:53:43 +0200 Subject: [PATCH] fix(cli): Add Batch plugin to static list --- cli/src/cordova.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/cordova.ts b/cli/src/cordova.ts index 2cef1bea3..05d88a499 100644 --- a/cli/src/cordova.ts +++ b/cli/src/cordova.ts @@ -510,6 +510,7 @@ export function needsStaticPod(plugin: Plugin): boolean { 'phonegap-plugin-push', '@havesource/cordova-plugin-push', 'cordova-plugin-firebasex', + '@batch.com/cordova-plugin', ]; return pluginList.includes(plugin.id); }