From 9f6e94f3803a782988f6e8865598f730f8de6c1a Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Wed, 20 May 2020 17:34:26 +0200 Subject: [PATCH] fix(cli): Improve plugin.xml framework detection --- cli/src/ios/update.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/ios/update.ts b/cli/src/ios/update.ts index f4694f383..dc3c31188 100644 --- a/cli/src/ios/update.ts +++ b/cli/src/ios/update.ts @@ -113,7 +113,7 @@ function getFrameworkName(framework: any) { } function isFramework(framework: any) { - return framework.$.src.split('.').pop() === 'framework'; + return framework.$.src.split('.').pop().includes('framework'); } async function generateCordovaPodspecs(cordovaPlugins: Plugin[], config: Config) {