Skip to content

Commit 40ecfdf

Browse files
author
Fatme
authored
Merge pull request #3784 from NativeScript/kddimitrov/fix-include-gradle-migration
fix: plugin include.gradle not migrated
2 parents 3e70b85 + f180c26 commit 40ecfdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/plugins-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export class PluginsService implements IPluginsService {
142142

143143
public async preparePluginNativeCode(pluginData: IPluginData, platform: string, projectData: IProjectData): Promise<void> {
144144
const platformData = this.$platformsData.getPlatformData(platform, projectData);
145-
pluginData.pluginPlatformsFolderPath = (_platform: string) => path.join(pluginData.fullPath, "platforms", _platform);
145+
pluginData.pluginPlatformsFolderPath = (_platform: string) => path.join(pluginData.fullPath, "platforms", _platform.toLowerCase());
146146

147147
const pluginPlatformsFolderPath = pluginData.pluginPlatformsFolderPath(platform);
148148
if (this.$fs.exists(pluginPlatformsFolderPath)) {

0 commit comments

Comments
 (0)