diff --git a/lib/services/ios-project-service.ts b/lib/services/ios-project-service.ts index c4e2cb8dfa..078c5b95b5 100644 --- a/lib/services/ios-project-service.ts +++ b/lib/services/ios-project-service.ts @@ -1574,14 +1574,12 @@ export class IOSProjectService ); const platformData = this.getPlatformData(projectData); const pbxProjPath = this.getPbxProjPath(projectData); - const addedExtensionsFromResources = - await this.$iOSExtensionsService.addExtensionsFromPath({ - extensionsFolderPath: resorcesExtensionsPath, - projectData, - platformData, - pbxProjPath, - }); - let addedExtensionsFromPlugins = false; + await this.$iOSExtensionsService.addExtensionsFromPath({ + extensionsFolderPath: resorcesExtensionsPath, + projectData, + platformData, + pbxProjPath, + }); for (const pluginIndex in pluginsData) { const pluginData = pluginsData[pluginIndex]; const pluginPlatformsFolderPath = pluginData.pluginPlatformsFolderPath( @@ -1592,21 +1590,12 @@ export class IOSProjectService pluginPlatformsFolderPath, constants.NATIVE_EXTENSION_FOLDER, ); - const addedExtensionFromPlugin = - await this.$iOSExtensionsService.addExtensionsFromPath({ - extensionsFolderPath: extensionPath, - projectData, - platformData, - pbxProjPath, - }); - addedExtensionsFromPlugins = - addedExtensionsFromPlugins || addedExtensionFromPlugin; - } - - if (addedExtensionsFromResources || addedExtensionsFromPlugins) { - this.$logger.warn( - "Let us know if there are other Extension features you'd like! https://github.com/NativeScript/NativeScript/issues", - ); + await this.$iOSExtensionsService.addExtensionsFromPath({ + extensionsFolderPath: extensionPath, + projectData, + platformData, + pbxProjPath, + }); } }