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 10b2216 commit 6d78b1fCopy full SHA for 6d78b1f
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