We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1b165c + 6d78b1f commit aced117Copy full SHA for aced117
lib/services/ios-project-service.ts
@@ -426,6 +426,9 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
426
427
private prepareCocoapods(pluginPlatformsFolderPath: string): IFuture<void> {
428
return (() => {
429
+ if(!this.$fs.exists(this.projectPodFilePath).wait()) {
430
+ this.$fs.writeFile(this.projectPodFilePath, "use_frameworks!\n").wait();
431
+ }
432
let pluginPodFilePath = path.join(pluginPlatformsFolderPath, "Podfile");
433
if(this.$fs.exists(pluginPodFilePath).wait()) {
434
let pluginPodFileContent = this.$fs.readText(pluginPodFilePath).wait();
0 commit comments