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
0 answers

How to configure two different APIs with the help of Cocoa pods?

I have configured the AFNetworking API with the help of Cocoa Pods and now I have to configure SDWebImage. I tried to add "platform :ios, '7.0' pod 'SDWebImage', '~>3.8'"in my existing pod file but it is not working and giving me the following error…
Developer
  • 6,375
  • 12
  • 58
  • 92
0
votes
1 answer

Installing Firebase 2.4.3 cocoapods

I am trying to install Firebase to my project with cocoapods. I modified pod file by adding line pod 'Firebase', '>= 2.4.3' And when I type pod install to terminal it gives me an error: [!] Unable to satisfy the following requirements: Firebase…
A. Buksha
  • 830
  • 9
  • 14
-1
votes
1 answer

Flutter iOS - Command PhaseScriptExecution failed with a nonzero exit code - ARCHIVE APP FROM XCODE

When I want to press Archive button from the Xcode, it gives UNRELAVANT this error: Command PhaseScriptExecution failed with a nonzero exit code How can I solve this problem? I tried: flutter clean flutter pub get flutter pub cache repair delete…
alperefesahin
  • 604
  • 6
  • 22
-1
votes
1 answer

CocoaPods could not find compatible versions for pod "GTMSessionFetcher/Core" RNFBAuth (from ../@react-native-firebase/auth`) was resolved to 16.5.0

I get errors while trying to pod install in my app I deleted the lock podfile.lock and also update the repo but I still have problems with the Firebase product sometime with auth and sometimes with dynamiclink or analytics i also try to delete…
-1
votes
2 answers

Flutter pod: An error occurred while processing the post-install hook of the Podfile

The problem is that when I run a flutter app after having installed a plugin (firebase_core in this case) I get an error: An error occurred while processing the post-install hook of the Podfile. undefined local variable or method `continue'…
-1
votes
1 answer

About pods using AFNetworking, could I have two packages of same framework in my project?

I have a problem. My project was made with 'AFNetworking', '~> 3.0' . Now I have to insert a third party library that is a binary file with the extension .a, and it was made based on 'AFNetworking', '~> 2.6.3'. So I have this dilema, I cannot set my…
-1
votes
1 answer

How to make changes to cocoapods file?

Im using this library for my project - https://github.com/filletofish/CardsLayout and I tried to change the size of the items in CardsCollectionViewLayout.swift but it does not work.. it still stays the same. I've also tried to make the changes by…
AF6890
  • 43
  • 5
-1
votes
1 answer

How can i use a library inside a podfile?

Can i use a library inside a pod file ? For example ,i would like to use some functionality from https://github.com/tonymillion/Reachability inside a pod file of this https://github.com/0xced/XCDYouTubeKit
WT24
  • 43
  • 1
  • 6
-1
votes
1 answer

Pods – How to use a forked repository?

I am having issues updating my pod from my forked repository..keep getting: [!] Unable to find a specification for 'QMChatViewController'. The story...I have forked a repository, this one: https://github.com/QuickBlox/QMChatViewController-ios I have…
tzuer
  • 321
  • 4
  • 12
-2
votes
2 answers

Change the value of a variable inside podfile from viewcontroller

import UIKit import Foundation open class podview: UIView { open var strk = UIColor.black . . } I have to change the value of "strk" from another view controller. Is it possible to do it.
Faheem Rahman
  • 343
  • 2
  • 10
1 2 3
24
25