@@ -984,8 +984,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
984984 }
985985
986986 const pbxProjPath = this . getPbxProjPath ( projectData ) ;
987- const project = this . createPbxProj ( projectData ) ;
988- this . $iOSExtensionsService . removeExtensions ( { project, pbxProjPath} ) ;
987+ this . $iOSExtensionsService . removeExtensions ( { pbxProjPath} ) ;
989988 await this . addExtensions ( projectData ) ;
990989 }
991990 public beforePrepareAllPlugins ( ) : Promise < void > {
@@ -1109,15 +1108,14 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
11091108 ) ;
11101109 const platformData = this . getPlatformData ( projectData ) ;
11111110 const pbxProjPath = this . getPbxProjPath ( projectData ) ;
1112- const project = this . createPbxProj ( projectData ) ;
1113- await this . $iOSExtensionsService . addExtensionsFromPath ( { extensionsFolderPath : resorcesExtensionsPath , projectData, platformData, pbxProjPath, project} ) ;
1111+ await this . $iOSExtensionsService . addExtensionsFromPath ( { extensionsFolderPath : resorcesExtensionsPath , projectData, platformData, pbxProjPath} ) ;
11141112 const plugins = await this . getAllInstalledPlugins ( projectData ) ;
11151113 for ( const pluginIndex in plugins ) {
11161114 const pluginData = plugins [ pluginIndex ] ;
11171115 const pluginPlatformsFolderPath = pluginData . pluginPlatformsFolderPath ( IOSProjectService . IOS_PLATFORM_NAME ) ;
11181116
11191117 const extensionPath = path . join ( pluginPlatformsFolderPath , constants . NATIVE_EXTENSION_FOLDER ) ;
1120- await this . $iOSExtensionsService . addExtensionsFromPath ( { extensionsFolderPath : extensionPath , projectData, platformData, pbxProjPath, project } ) ;
1118+ await this . $iOSExtensionsService . addExtensionsFromPath ( { extensionsFolderPath : extensionPath , projectData, platformData, pbxProjPath} ) ;
11211119 }
11221120 }
11231121
0 commit comments