Skip to main content
Filter by
Sorted by
Tagged with
19 votes
5 answers
19k views

I'm trying to create a Flutter Plugin to use a native library. This library I'm trying to use is stored in a private repository and can be used with Swift Dependency Manager. This is causing me a ...
siega's user avatar
  • 2,910
1 vote
0 answers
121 views

I am learning React Native and i want to implement google maps in my project. But when i update my podfile and run pod install. WebStorm gives me error as You may have encountered a bug in the Ruby ...
Nitesh Raj Khanal's user avatar
0 votes
1 answer
400 views

The CocoaPods Podfile for my iOS app uses a post_install hook to copy the generated Acknowledgements.plist file to my application's Settings bundle. However, the file contains (proprietary) private ...
JWK's user avatar
  • 3,830
0 votes
1 answer
319 views

Why in the world would my Podfile.lock file be showing a VS code Logo on it? see here
user avatar
5 votes
1 answer
10k views

I'm having a hard time using Flipper. I commented it out in Podfile while hermes_enabled => true. I ran pod install agin and build the app but it crashed upon launch. When I set Hermes to false,...
Hadis's user avatar
  • 594
3 votes
0 answers
11k views

I am new to using React Native and is currently trying to make a simple to-do list. Unfortunately, I cannot proceed rn as I am stuck with this error, which I have no idea how to fix. What happened? ...
mxlyct's user avatar
  • 31
22 votes
17 answers
81k views

I am trying to build a Flutter app with Geolocator plugin on Android Studio. When I am running the app I have the following warning - that prevents the app from running: Warning: CocoaPods not ...
Idanref's user avatar
  • 376
0 votes
0 answers
287 views

We have podspec file in the project and I wanted to include PDFTron as dependency spec. Below is the way i'm adding third party libraries as dependencies in podspec file. -------podspec file-----------...
Ravikanth Manne's user avatar
1 vote
0 answers
332 views

Consider this as my podfile require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' ...
Alwaysblue's user avatar
  • 12.2k
0 votes
1 answer
306 views

I am working on a Macbook Pro 2019. I want to use Firebase/Auth, Firebase/Firestore, Firebase/Analytics and Firebase/Core. I think there is something wrong with the podfile. Podfile: # Uncomment this ...
Paul Becker's user avatar
2 votes
2 answers
8k views

I get the following Error everytime i try to run my Flutter App. I tried literally so much to fix it but still the Error isn't fixed. Launching lib/main.dart on iPhone 12 Pro Max in debug mode... ...
blurryface's user avatar
0 votes
1 answer
1k views

I'm trying to add firebase to my flutter project I'm using windows machine so I did add it to the android level app while I'm trying to add it to the IOS level app I can't find a way to create the ...
AliHassan's user avatar
16 votes
4 answers
33k views

I've searched a lot but unfortunately I didn't find a solution. For my flutter project I added the Firebase plug in in the pubspec.yaml file and since then I wasn't able to run the project on my ...
Berkin's user avatar
  • 529
1 vote
1 answer
763 views

I have implemented custom cocoapods in iOS swift but i am unable to access the file that i have developed in my framework. I have installed the framework using pod install and given the local path to ...
Muneeb Rehman's user avatar
0 votes
1 answer
3k views

I'm trying to build a Flutter on iOS but I'm getting this type of error, where I'm told "Operation not permitted in target 'package' from project 'Pods", on few packages. The packages are: ...
Rick's user avatar
  • 279
0 votes
1 answer
283 views

I am using Swift 5.0 and I installed a pod where the code had to be updated manually - which I did. Everytime when I run pod install, the changes I did (update to Swift 5.0) get overwritten and of ...
Melodias's user avatar
1 vote
0 answers
237 views

I worked on Nativescript project for Android and IOS. And I want to use this plugin Socket.IO-Client-Swift. I execute this ns plugin add @triniwiz/nativescript-socketio . "@triniwiz/nativescript-...
KillianPjl's user avatar
0 votes
1 answer
747 views

When upgrading to iOS 12.5, I am getting the compile error that: "Application extensions and any libraries they link to must be built with the APPLICATION_EXTENSION_API_ONLY build setting set to ...
Eric Wiener's user avatar
  • 6,155
1 vote
1 answer
3k views

I'm trying to build a Flutter App. The app works absolutely fine with Andrioid. But, gives the following error in Xcode build : ld: framework not found clang error : linker command failed with exit ...
Amrutha Desai's user avatar
1 vote
0 answers
415 views

I'm using the Firebase Auth Sign in with Phone Number and Register with Phone number methods. They're working fine on android but when implementing them on iOS my app crashes. After doing some digging ...
Andrew Villegas's user avatar
1 vote
0 answers
114 views

10 errors generated. note: Using new build system note: Building targets in parallel note: Planning build note: Constructing build description warning: The iOS Simulator deployment target '...
NISHANT Sabbarwal's user avatar
0 votes
1 answer
460 views

I have two frameworks 'GeneralABC' and 'GeneralXYZ'. Both of them have the same interface but different business logic. I define their module_name in podspec as General, so that other projects using ...
justicepenny's user avatar
  • 2,026
1 vote
1 answer
1k views

I downloaded github Socket.swift, created Podfile per installation instruction, but Cocoapods "pod install" gets the error. Podfile is: [![# Uncomment the next line to define a global ...
Doug Null's user avatar
  • 8,387
1 vote
1 answer
2k views

I have created a Flutter plugin and this is my podspec file: Pod::Spec.new do |s| s.name = 'sdksso' s.version = '0.0.1' s.summary = 'A new flutter plugin project.' ...
Maxim's user avatar
  • 23
2 votes
0 answers
655 views

I don't know why I keep getting this error so frequently, is there a way to stop it? What's causing this? I always get to solve it by following this steps though: Clean build folder and close Xcode. ...
Savvy's user avatar
  • 637
24 votes
4 answers
29k views

I have upgrade react-native to 0.64 and I'm getting this error after I run pod install. No podspec found for `FBReactNativeSpec` in `../node_modules/react-native/Libraries/FBReactNativeSpec` I have ...
Paolo's user avatar
  • 243
0 votes
1 answer
595 views

I'm upgrading a React Native project to v0.63.4, and am getting a similar error to the one in this question. In the accepted answer to that question, the user shares what the contents of your Podfile ...
gkeenley's user avatar
  • 7,648
0 votes
1 answer
4k views

sometimes pod file is getting old versions of my third parties so i am wondering if there is any way of modifying podfile and adding desired dependency versions(eg; firebase 7.0.0) automatically after ...
Çağatay IŞIK's user avatar
0 votes
1 answer
844 views

when installing flutter_ffmpeg I should set the package name in android/build.gradle ext { flutterFFmpegPackage = "<flutter ffmpeg package name listed in section 2.1>" } and in ...
JoergP's user avatar
  • 1,569
0 votes
1 answer
1k views

My project use static library to integrate with third-part pods. I want to change one pod to dynamic framework. But I don't want to add use_frameworks! because this will cause all pods become dynamic ...
NewSelf's user avatar
  • 247
2 votes
1 answer
2k views

I use Flutter with xcode. I get an error if I do $ flutter run ios And i get error from my xcode Podfile content Error output from Xcode: ↳ /Users/username/Desktop/Projects/myprojectfolder/ios/Pods/...
alabiboo's user avatar
1 vote
0 answers
162 views

I did 'pod init' inside my project file then I have Podfile in my project file. and I updated cocoapods to the latest. jeongseongjun-ui-MacBookPro:Flo chungseongjun$ ls Flo Flo.xcodeproj Podfile ...
Chung Seong-jun's user avatar
1 vote
2 answers
7k views

I'm writing tests for my react-native application, but it fails, suggesting I run pod install. After running pod install, I get !] CocoaPods could not find compatible versions for pod "GoogleMaps&...
Marvelous Ikechi's user avatar
0 votes
0 answers
52 views

I'm developing an iOS (>=13.0) app, it's already on the App Store etc... The problem is that today I've tried to implement the Facebook SDK to permit me to create ad on Facebook and Instagram, I've ...
Elia Mirafiori's user avatar
2 votes
2 answers
9k views

For me, there are two ways to generate a pod file after deleting it the first one is by running flutter pub get and then a pod file will be generated in the following form after some editing # ...
Shalabyer's user avatar
  • 635
1 vote
0 answers
250 views

I am trying to apply a patch to reduce build times for an ios 14.4 flutter app. The patch works by editing the ios podfile to consume pre-compiled binaries for specific packages, instead of ...
Jimmy Donovan's user avatar
31 votes
13 answers
49k views

I have been trying to run ios for a new but kept getting this error ** BUILD FAILED ** The following build commands failed: CompileC /Users/struggle/Library/Developer/Xcode/DerivedData/client-...
Scav's user avatar
  • 334
1 vote
1 answer
727 views

I have a project that depends on Alamofire 5.0 and another pod which depends on an older version of Alamofire 4.9. however I get the error when i compile it. my pod dependency are as follows: Podfile ...
justicepenny's user avatar
  • 2,026
0 votes
1 answer
530 views

I'm following this guide for adding AsyncStorage to my React Native app. I'm using react native v0.63.4, but I'm using a Mac, so I'm wondering whether the manual linking that they cite for MacOS at ...
gkeenley's user avatar
  • 7,648
0 votes
1 answer
598 views

I'm working on flutter app and ios part working without problem, but I update flutter to version 1.22.5 and when I tried launch app flutter make pod install and show follow message: Analyzing ...
Bryan Sanjuan's user avatar
0 votes
1 answer
421 views

I am adding firebase to my iOS app in flutter. Problem occurs in the add firebase SDK step. I run the command pod init in my terminal but it says -bash: pod: command not found.
nit21's user avatar
  • 175
1 vote
0 answers
350 views

Here's my terminal export: Here for pod init: Masons-iMac:GoodDays nacly$ ls GoodDays GoodDaysTests GoodDays.xcodeproj GoodDaysUITests Masons-iMac:GoodDays nacly$ pod init -bash: /usr/local/...
Mason Ballowe's user avatar
2 votes
1 answer
2k views

I currently have the following situation in my flutter iOS/Android development process: Every time flutter build runs it executes pod install which installs the regular Flutter Podfile # Uncomment ...
Reesz's user avatar
  • 31
2 votes
0 answers
1k views

This is the error when I try to run ios app. [!] CocoaPods could not find compatible versions for pod "FBSDKLoginKit": In Podfile: flutter_facebook_auth (from `.symlinks/...
Ananthakrishna's user avatar
1 vote
0 answers
521 views

I created a Framework in xCode called 'IdFramework', and also created a .podspec file for IdFramework. Part of the swift files in IdFramework are dependent on external CocoaPods such as Firebase. So, ...
Idanis's user avatar
  • 2,008
3 votes
0 answers
1k views

I am new to iOS development and tried to merge the following pieces of code into one post_install hook without luck: post_install do |installer| installer.pods_project.targets.each do |target| ...
BerlinUkn0w's user avatar
1 vote
0 answers
54 views

I set up the podfile for the Xcode project and have been using the workspace file to build. "Could not build module 'GoogleDataTransport'" as well as "Umbrella header for module '...
qsaluan's user avatar
  • 59
0 votes
1 answer
264 views

So I was working on a personal project and wanted to use SwipeMenuViewController and installed it but when I try to run my project on Xcode it gives me an error and says [No such module '...
user avatar
1 vote
2 answers
4k views

I'm following instructions here to add a package: https://github.com/joltup/rn-fetch-blob It says to do npm install OR add to Podfile. What I did was yarn add rn-fetch-blob Then  cd ios pod install ...
Joshua Augustinus's user avatar
1 vote
0 answers
2k views

I have downloaded a project on the Internet and cannot run it. I've searched the solution but could not solve it. I'm a new Macbook user and don't know much about it (Podfiles etc.). Here is the error ...
korimusk's user avatar

1 2 3
4
5
9