From 8736d90373d11ad64da9924567ea4faf69dd65ca Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Wed, 20 May 2020 19:04:26 +0200 Subject: [PATCH] fix(cli): Improve plugin.xml framework detection (#2956) --- 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) {