For questions specific to the usage and features of CocoaPods version 1.1.1. Use the more generic [cocoapods] tag where possible.
Questions tagged [cocoapods-1.1.1]
22 questions
28
votes
3 answers
Pod install, The dependency `*****` is not used in any concrete target
When performing pod install on a project I get the following output:
Analyzing dependencies
[!] The dependency `MMDrawerController (~> 0.5.7)` is not used in any concrete target.
The dependency `ViewUtils` is not used in any concrete target.
The…

Chao
- 317
- 1
- 3
- 10
8
votes
3 answers
Cocoapods 1.1.1 target overrides the `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES`
I have updated to cocoapods 1.1.1 for my XCode 8 Swift 2.0 project and now I'm getting the warning "...target overrides the ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES ..." in the console. How can I fix this?
Here my podfile
platform :ios,…

netshark1000
- 7,245
- 9
- 59
- 116
3
votes
1 answer
Duplicate symbols error when upgrading react-native to 0.39.0 and above
I am trying to update an ios app to react-native 0.39 and more.
Everything works at 0.38.2 but after that I've got the ld: X duplicate symbols for architecture Y issue.
The app itself is a mixture of swift, obj-c, web embedding etc ...
But it has a…

Wiwi
- 150
- 1
- 7
2
votes
1 answer
How can I declare dependency to subspec 'A' from subspec 'B' in the same podspec file?
I am trying to find out a way to declare dependency from subspec 'B' to subspec 'A' in the podspec: 'mypodspecfile.podspec' as below:
Pod::Spec.new do |s|
s.name = "MyLib-SDK"
s.version = "1.0"
s.summary = "My Library"
…

beachboy
- 43
- 1
- 6
1
vote
2 answers
When writing a cordova plugin for ios, how do I set the minimum ios platform in my podfile?
I'm writing a cordova plugin and I have a framework I'm adding with cocoapod. The framework has a minimum ios requirement of version 13.0. When my pod file is generated it is defaulting to ios 10.0. How do I set the required IOS version in my…

Jay Bowman
- 69
- 9
1
vote
1 answer
Stop Re-creating CocoaPods due to major version update on pod install
how do i stop the re-installing of old pods on new pod install.
old pod was 1.0.0, updated pod is 1.1.1
pod install --no-repo-update ---->
Re-creating CocoaPods due to major version update.
for example:
pod file: pod 'Alamofire', '~>…

iSwift
- 314
- 3
- 17
1
vote
0 answers
how to create private cocoapods compatible for all swift 3.x versions?
I have created a private cocoapod in xcode 8.2(swift 3.0.2) using the tutorial as shown in the below link.
https://guides.cocoapods.org/making/private-cocoapods.html
cocoapod created successfully but the pod is compatible for only swift 3.0.2. If I…

Manoj Kumar M
- 65
- 7
1
vote
1 answer
Swift iOS project won't compile if I add any CocoaPod library
I'm new to iOS and am working on an app in Swift. I'd like to use CocoaPods for dependency management, but I am having issues. I've been able to install CocoaPods on my Mac, run pod init to create my pod file, and run pod install to install…

robmon
- 49
- 5
1
vote
1 answer
.h file not linking when pod install
Mac OS 10.12
xcode 8.1
We are trying to install pod like
platform :ios, '8.0'
target 'ProjectName' do
pod 'ARSafariActivity', '~> 0.0'
pod 'FFBadgedBarButtonItem', '~> 1.0'
pod 'MMDrawerController', '~> 0.5'
pod 'MMProgressHUD', '~> 0.2'
pod…

Dnyaneshwar Wakchaure
- 232
- 2
- 14
1
vote
1 answer
Are there different ways to include Objective-C pods in swift xcode xcworkspace projects post pod install?
Using pod dependencies, the import behavior is inconsistent.
This behavior is different on different machines for the same pods in Podfile. After successfully installing pods, my team came across the following two situations.
On one it worked…

Arjun Shukla
- 337
- 7
- 10
0
votes
1 answer
Flutter installation into MacOS | Cocoapods installation error
I am trying to install flutter into my macOS 13.1 (22C65). I have already installed flutter and Xcode. But I cannot install cocoapods.
After I ran "flutter doctor" to check if anything is left to install, it told me to install cocoapods. But when I…

Maria
- 1
0
votes
0 answers
Getting Errors Installing Pods
I am having an issue with my xcode project that it is not installing any new pods. I installed the same library on another project and it is working there. the terminal give me the following error when I use
pod install
I also update my cocoapods…

Taimoor Arif
- 750
- 3
- 19
0
votes
0 answers
XCODE not installing pods
i am trying to install pod in my project and getting the error
GoogleAppMeasurement requires CocoaPods version >= 1.10.2, which is not satisfied by your current version, 1.10.1.
i tried with the brew and it gives me this error:
The following…

Taimoor Arif
- 750
- 3
- 19
0
votes
1 answer
Cocoapods: Error when adding Google Maps iOS SDK
I'm following instructions from this url in order to install Google Maps SDK for iOS.
I'm getting an error when running pod update using version 1.1.1.
[!] The 'Pods-[Target Name]' target has frameworks with conflicting names:…

Felipe Peña
- 2,712
- 4
- 22
- 41
0
votes
1 answer
Why do we need to use target "PROJECT_NAME" do from what version of cocoapods / xcode
Recently in my new MACI've installed cocoa pods 1.2.1 i ran "pod update" in my projects Folder to update to the newest Version.
The result of the update is:
The dependencyFlurrySDKis not used in any concrete target.
I've fixed the problem by adding…

iOS dev
- 2,254
- 6
- 33
- 56