We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e70b85 + f180c26 commit 40ecfdfCopy full SHA for 40ecfdf
lib/services/plugins-service.ts
@@ -142,7 +142,7 @@ export class PluginsService implements IPluginsService {
142
143
public async preparePluginNativeCode(pluginData: IPluginData, platform: string, projectData: IProjectData): Promise<void> {
144
const platformData = this.$platformsData.getPlatformData(platform, projectData);
145
- pluginData.pluginPlatformsFolderPath = (_platform: string) => path.join(pluginData.fullPath, "platforms", _platform);
+ pluginData.pluginPlatformsFolderPath = (_platform: string) => path.join(pluginData.fullPath, "platforms", _platform.toLowerCase());
146
147
const pluginPlatformsFolderPath = pluginData.pluginPlatformsFolderPath(platform);
148
if (this.$fs.exists(pluginPlatformsFolderPath)) {
0 commit comments