All Questions
Tagged with cocoapods objective-c
1,096 questions
0
votes
1
answer
83
views
Importing Swift into Objective-C with CMake
I have a QT app with CMake. CMake generates .xcodeproj and CocoaPods generates .xcworkspace from the following Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, :...
0
votes
0
answers
86
views
Trying to use GTMAppAuth in objectiveC project using cocoapods throws errors
I'm trying to use GTMAppAuth in my ObjectiveC project.
In my podfile I use pod 'GTMAppAuth' platform: ios, '12.0' and use_frameworks!
The Podfile seems to be installed and I can see the GTMAppAuth in ...
0
votes
0
answers
81
views
AppCheckCore 'GoogleUtilities/GULKeychainStorage.h' file not found in my objective-c project
I gets the error:
'GoogleUtilities/GULKeychainStorage.h' file not found
in file - Pods/AppCheckCore/GACAppCheckStorage.h
The error occurred when i installed a new pod in an old objective-c project.
...
0
votes
0
answers
21
views
Cocoapod integration Issue in Framework as target
I have created an Application in which we have framework as target. I am using SendbirdChatSDK and Sendbirdcalls Cocoapod as dependency for framework.
While compiling it is showing error in swift ...
3
votes
0
answers
182
views
Umbrella-Header uses wrong import syntax after `pod install`
I am developing a local Expo module in which I am using a 3rd party Framework.
My .podspec looks something like this:
Pod::Spec.new do |s|
# root specification
s.dependency 'ExpoModulesCore'
s....
0
votes
1
answer
96
views
How do I declare an extern variable in a Cocoapods framework?
I am making a Cocoapod framework that needs to declare an extern variable such that the integrator defines the constant value. This is a requirement by our client. In the past, we used a static ...
1
vote
0
answers
453
views
The following Swift pods cannot yet be integrated as static libraries in iOS Project Objective C Language
Report
What did I do?
I tried to run the pod install or arch -x86_64 pod install command
What did you expect to happen?
I want to pod install Facebook with use framework!.
Currently, I am using a ...
0
votes
0
answers
61
views
My Framework's PCH file isn't applied after adding a Swift file to the project, Podfile
I have a Workspace with 2 projects, where one is a "common" project with code to share between projects and targets and the other is my main IOS app.
So, I have a podspec for it, and use ...
0
votes
2
answers
278
views
'MWCommon.h' file not found
I am working on an old project written in Objective-C and its minimum deployment version is iOS 13.0. Recently I've updated the libraries using pod and now the project is showing the error 'MWCommon.h'...
0
votes
0
answers
71
views
How can I create a framework with pod dependencies in it?
I saw many tutorials by the developers which are not proved to be very helpful for me to in this area. Some of them are old a few are now like year old but when I follow them them the same thing is ...
0
votes
1
answer
2k
views
'GoogleMaps/GoogleMaps.h' file not found after updating GoogleMaps using pod update
I'm working on an old iOS project in Objective-C that had Google Maps with version 6.2.1. The app was working correctly.
But after using pod update I can't build my project. In the line #import <...
-1
votes
1
answer
297
views
Cocoapods (AFNetworking) issue when archiving project
I am trying to build a legacy Obj-C project, it's getting around 80% of progress and fails with the following error. I tried to reinstall pods, clean Derived Data, restart Xcode/computer.
`mkdir -p /...
0
votes
0
answers
42
views
Cocoapods framework: Assets is in different bundle with framework's bundle
I have a framework mixed Objective-C and Swift using CocoaPods for distribution. The issue is it cannot load images stored in the framework's Assets.
This is the code I used to load the image:
let ...
1
vote
0
answers
77
views
pod lib lint error for objective C library
I am developing new version for Mapp Intelligence library (https://github.com/mapp-digital/MappIntelligence-iOS-v5) and I had to rename few classes at the latest version to avoid collision with some ...
1
vote
1
answer
205
views
Adding SPM support to Mixed Language CocoaPod results in No Such Module
Since SPM doesn't support mixed language targets, I have to split the ObjectiveC files into a separate target.
let package = Package(
name: "MyPackage",
products: [
.library(
...