@@ -984,8 +984,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
984
984
}
985
985
986
986
const pbxProjPath = this . getPbxProjPath ( projectData ) ;
987
- const project = this . createPbxProj ( projectData ) ;
988
- this . $iOSExtensionsService . removeExtensions ( { project, pbxProjPath} ) ;
987
+ this . $iOSExtensionsService . removeExtensions ( { pbxProjPath} ) ;
989
988
await this . addExtensions ( projectData ) ;
990
989
}
991
990
public beforePrepareAllPlugins ( ) : Promise < void > {
@@ -1109,15 +1108,14 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
1109
1108
) ;
1110
1109
const platformData = this . getPlatformData ( projectData ) ;
1111
1110
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} ) ;
1114
1112
const plugins = await this . getAllInstalledPlugins ( projectData ) ;
1115
1113
for ( const pluginIndex in plugins ) {
1116
1114
const pluginData = plugins [ pluginIndex ] ;
1117
1115
const pluginPlatformsFolderPath = pluginData . pluginPlatformsFolderPath ( IOSProjectService . IOS_PLATFORM_NAME ) ;
1118
1116
1119
1117
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} ) ;
1121
1119
}
1122
1120
}
1123
1121
0 commit comments