All Questions
Tagged with cocoapods frameworks
322 questions
0
votes
1
answer
124
views
How to use custom .framework with flutter plugin
the problem is I'm getting sharing Module not found
let's say I have
sharing.framework & I have a flutter plugin + flutter project
flutter plugin is inside the flutter project, I want to use ...
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 ...
0
votes
1
answer
78
views
SwiftUI App only install framework(SwiftUI) not it's dependency(SDK.framework)
I'm encountering a challenge when integrating a UI framework as a local pod into an app project. The UI framework itself builds successfully, and I've embedded a pre-built fat framework as a ...
0
votes
1
answer
71
views
Swift Version Compatibility Issue in CocoaPods
I have a question about framework creation in Swift. While I hold it on the Cocoapods, and other users install it, they are facing the Swift compiler error(xyz framework compiles swift 5.8.2 while you ...
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
0
answers
67
views
Creating a framework and using pods in it, and call this whole framework in a project Xcode
I have a query, i am converting my project into a framework..
All the pods are installed in my code already, i have created the framework by simply selecting Framework, then i just created a class to ...
1
vote
1
answer
1k
views
my pod framework are missing after updating xcode to 14.3.1
my project worked perfectly before i update xcode to 14.3.1
now it looks like xcode can't find my frameworks
i drop images of parts of my project below.
after build my project this is console error
...
1
vote
1
answer
387
views
MyFramework `vendored_frameworks` pattern did not match any file
I have a pod library that include an xcframework. This is definition of podspec:
Pod::Spec.new do |s|
s.name = 'MySDK'
s.version = '1.0.0'
s.summary =...
1
vote
1
answer
319
views
Cocoapods, Library not loaded
I get this error message :
Thread 1: signal SIGABRT
dyld[1057]: Library not loaded:
@rpath/AlgoliaSearchClient.framework/AlgoliaSearchClient Referenced from: <EFE10BCF-D1E4-32F9-9D3B-BC496485BF96&...
1
vote
1
answer
1k
views
How should I pull in a vendored_framework into my project?
I know how to package my code in the PodSpec. I'm using this post on how to publish my xcframework using cocoapods
Pod::Spec.new do |spec|
spec.name = "StarWars"
spec....
0
votes
0
answers
261
views
Xcode Swift Error: Framework not found FirebaseAnalytics
I tried adding FirebaseAnalytics now in getting this error.
This is my pod file:
And this is the error:
Framework not found FirebaseAnalytics
tried adding $(inherited) in the build settings. tried ...
1
vote
0
answers
163
views
How to hide files/file implementation in a private podspec?
I created a private cocoapod framework and distributed it.Now i am able to download it via pods. But upon pod install all files and it's implementation is present. I want to hide the files or its ...
1
vote
0
answers
163
views
umbrella framework with cocoa-pods dependencies using Aggregate target
I'm trying to create an umbrella framework with pods 'GoogleMLKit/FaceDetection' and 'lottie-ios'. I have followed this tutorial but run script is throwing me some errors like
error build: error: ...
1
vote
0
answers
133
views
The 'Pods-Runner' target has transitive dependencies that include statically linked binaries: Mux-Stats-AVPlayer/XCFramework/MUXSDKStats.xcframework
Flutter is already up to date on channel stable
Flutter 3.3.8 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 52b3dc25f6 (2 weeks ago) • 2022-11-09 12:09:26 +0800
Engine ...
0
votes
1
answer
425
views
Custom framework cannot find other pod that required Bridging-Header file: "No such module 'InsiderMobile'"
Currently we are developing a custom framework which need to use InsiderMobile cocoapods. According to this guideline, we will need o create Bridging-Header File to use InsiderMobile. However, ...