We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5069f29 + 585447c commit 81fa73dCopy full SHA for 81fa73d
lib/services/ios-project-service.ts
@@ -238,7 +238,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
238
239
if (path.extname(frameworkPath) === ".xcframework") {
240
let isDynamic = true;
241
- const subDirs = this.$fs.readDirectory(frameworkPath).filter(entry => this.$fs.getFsStats(entry).isDirectory());
+ const subDirs = this.$fs.readDirectory(frameworkPath).filter(entry => this.$fs.getFsStats(path.join(frameworkPath, entry)).isDirectory());
242
for (const subDir of subDirs) {
243
const singlePlatformFramework = path.join(subDir, frameworkName + ".framework");
244
if (this.$fs.exists(singlePlatformFramework)) {
0 commit comments