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.
1 parent 07c64a5 commit 80de65bCopy full SHA for 80de65b
lib/services/ios-project-service.ts
@@ -178,6 +178,13 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
178
179
const pbxprojFilePath = this.getPbxProjPath(projectData);
180
this.replaceFileContent(pbxprojFilePath, projectData);
181
+
182
+ const internalDirPath = path.join(projectRootFilePath, "..", "internal");
183
+ const xcframeworksFilePath = path.join(internalDirPath, "XCFrameworks.zip");
184
+ if (this.$fs.exists(xcframeworksFilePath)) {
185
+ await this.$fs.unzip(xcframeworksFilePath, internalDirPath);
186
+ this.$fs.deleteFile(xcframeworksFilePath);
187
+ }
188
}
189
190
public interpolateConfigurationFile(projectData: IProjectData): void {
0 commit comments