Skip to content

Commit cb96f2c

Browse files
committed
Fix native framework relative path calculation
1 parent 3a6ba18 commit cb96f2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/ios-project-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
674674
}
675675

676676
private getLibSubpathRelativeToProjectPath(targetPath: string): string {
677-
let frameworkPath = path.relative("platforms/ios", targetPath);
677+
let frameworkPath = path.relative(this.platformData.projectRoot, targetPath);
678678
return frameworkPath;
679679
}
680680

0 commit comments

Comments
 (0)