Questions tagged [podfile]

The Podfile is a specification that describes the dependencies of the targets of one or more Xcode projects. The file should simply be named Podfile.

A pod file is used with CocoaPod and CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects.

370 questions
0
votes
1 answer

I'm trying to install firebase_storage in flutter but I got error pod can not install error occured

I install this in pubspec.yaml file in flutter and getting error firebase_storage: ^3.1.5
0
votes
3 answers

No podspec found for `React-Core` in `../node_modules/React`

First its not duplicated. Because i have different issue. I upgraded my react Native version to '0.62.2' (I wish I hadn't upgraded). I'm dealing with a lot of problems right now.This is my problem now No podspec found for React-Core in…
Ibrahim Yolbir
  • 139
  • 2
  • 14
0
votes
1 answer

'React/RCTUtils.h' file not found

I am using xcode to build android app. in azure devops pipeline; on build i am getting this error: ▸ Compiling PdfManager.m ❌ /Users/runner/runners/2.166.3/work/1/s/node_modules/react-native-pdf/ios/RCTPdf/PdfManager.m:16:9: 'React/RCTUtils.h'…
Rishav Singh
  • 143
  • 1
  • 3
  • 14
0
votes
1 answer

No podspec found for `RNPDF` in `../node_modules/react-native-view-pdf`

I am creating Azure build pipeline for react native app and in that while installing pods using cocoapod task that is: - task: CocoaPods@0 inputs: forceRepoUpdate: true projectDirectory: '$(system.defaultWorkingDirectory)/ios' …
0
votes
1 answer

How do I specify the version of react-native-onesignal in my podfile?

I'm following this guide on how to set up OneSignal with React Native. In the section where it says In your Podfile, add the notification service extension..., it says to add the following to my Podfile: target…
gkeenley
  • 6,088
  • 8
  • 54
  • 129
0
votes
1 answer

Flutter: running the app on the IOS simulator throwing Podfile error

I am developing a mobile application using Flutter. I am a beginner to Flutter and not familiar with iOS development either. I am using Android Studio as my IDE for development. Now, I am trying to run my app on the IOS simulator running the…
Wai Yan Hein
  • 13,651
  • 35
  • 180
  • 372
0
votes
0 answers

Why do I get prompted when I attempt to delete my project?

I just did rm -r projectName then I got: override r--r--r-- honey/staff for projectFolder//.git/objects/pack/pack-9323e9c7e9a036b5f0f9186d05e31536e342308.pack? Based on a Google search, I know I won’t be prompted to such if I rm -rf But still…
mfaani
  • 33,269
  • 19
  • 164
  • 293
0
votes
0 answers

Change Different Deployment Targets for Different SDK's

I need to add two deployment target values for two different SDK's. Is there any way that we can do it in Podfile. I knew that we can add different swift versions or other setting but i didnt know how can add deployment targets. It will be great if…
0
votes
2 answers

Error after accidentally deleting Podfile

I made a huge mistake by deleting one podFile I had in my Xcode iOS application. I thought that the error was coming from that file when Instead it was another. Long story short, I deleted the LevelDB pod and now the application is giving me this…
user12422782
0
votes
1 answer

Unable to archive in React Native - Archive Fails with duplicate symbols for architecture arm64

It's showing 285 duplicate symbols for architecture arm64 Linker command failed with exit code 1 (use -v to see invocation) Strangely, I can't seem to get Archive to work in XCode but the build succeeds without the errors on duplicate symbols and…
guruprakash gupta
  • 877
  • 4
  • 9
  • 15
0
votes
1 answer

Error while integrating RN FFMPEG in react native

**[!] There are multiple dependencies with different sources for `react-native-ffmpeg` in `Podfile`: - react-native-ffmpeg (from `../node_modules/react-native-ffmpeg/ios`) - react-native-ffmpeg (from…
Rishav Kumar
  • 4,979
  • 1
  • 17
  • 32
0
votes
1 answer

After run pod install react get removed while upgrading react-native version

Can anyone explain why the pod install removing the React. Also it shows the React missing in product-->Edit scheme. I need any good solution RCTBrigeModule.h file not found error? I dont have any idea how to fix this. Before unlinking the…
sejn
  • 2,040
  • 6
  • 28
  • 82
0
votes
1 answer

Is there a command line tool that can modify the Podfile?

I want to add a framework to my project using Cocoapods. But I don't want to change Podfile manually. I want to use a command line to edit the Podfile like this: some_command ./Podfile --add AFNetworking --target MyTarget Is it possible?
Jaylon
  • 55
  • 7
0
votes
2 answers

pod update not getting most updated version of pod

Cocoapods and Xcode are both the latest version I have a pod whose repo I am linking directly in my podfile, and specifying to use version 1.5.0 (that has been released as a version on Github). However, whenever I run pod install and pod update,…
Kevin2566
  • 425
  • 8
  • 20
0
votes
1 answer

React Native: What is the difference between using Cocoapods and manually linking modules?

I've been working with React Native for about a year, and have always linked native modules either with react-native link or by manual linking, by dragging the .xcodeproj file to the Libraries folder and then dragging the .a file to the "Link Binary…
gkeenley
  • 6,088
  • 8
  • 54
  • 129