From d29bc6d650afeb5d8d0dc9c8e9c38e1f2d1102a1 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Wed, 19 Aug 2026 11:43:35 -0700 Subject: [PATCH] chore: remove extensions note that appeared as a warning --- lib/services/ios-project-service.ts | 35 ++++++++++------------------- 1 file changed, 12 insertions(+), 23 deletions(-) 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, + }); } }