diff --git a/lib/services/plugins-service.ts b/lib/services/plugins-service.ts index b08b9f0bc3..01220cec8f 100644 --- a/lib/services/plugins-service.ts +++ b/lib/services/plugins-service.ts @@ -142,7 +142,7 @@ export class PluginsService implements IPluginsService { public async preparePluginNativeCode(pluginData: IPluginData, platform: string, projectData: IProjectData): Promise { const platformData = this.$platformsData.getPlatformData(platform, projectData); - pluginData.pluginPlatformsFolderPath = (_platform: string) => path.join(pluginData.fullPath, "platforms", _platform); + pluginData.pluginPlatformsFolderPath = (_platform: string) => path.join(pluginData.fullPath, "platforms", _platform.toLowerCase()); const pluginPlatformsFolderPath = pluginData.pluginPlatformsFolderPath(platform); if (this.$fs.exists(pluginPlatformsFolderPath)) {