1,326 questions
-4
votes
0
answers
38
views
With an Xcode project in despair because of package [closed]
I am only relatively new to the community. However, I can't get a few packages together and now I don't know how to get any further and I'm still at the beginning of my project, I would also be ...
0
votes
1
answer
46
views
Create an .xcframework from Swift Package with binaryTarget
I need to pack an API that depends on a C binary into a single xcframework.
This task seems to be quite tricky because I cannot find any helpful resources. I don't know how to proceed.
I have a ...
0
votes
0
answers
28
views
How to add multiple device-only xcframeworks to enable simulator run too in SwiftUI?
So, I have SwiftUI project, which is multi-modular project. All the modules are included in the form of SPM. Everything works fine until now when we are required to integrate third party sdks which ...
0
votes
0
answers
92
views
Kotlin Multiplatform + Google Maps on iOS: Why do I still need .def file with SPM? Interop not working without cinterop
I am integrating Google Maps SDK for iOS into my Kotlin Multiplatform (KMP) project. Earlier I was using CocoaPods and everything was working. Now I migrated to Swift Package Manager (SPM) and removed ...
1
vote
1
answer
63
views
Azure DevOps iOS pipeline fails during Xcode archive: “Signing for GoogleSignIn_GoogleSignIn requires a development team”
I’m trying to build and upload an iOS app to TestFlight using an Azure DevOps pipeline, but the build fails during the archive step with signing errors related to Swift Package dependencies (e.g., ...
0
votes
0
answers
34
views
Library not loaded: @rpath/DTBiOSSDK.framework/DTBiOSSDK
I have one xcode work space contain two iOS app projects and one shared lib framework. Recently, we are trying to SPM to import another SDK into our projects. I have set the package dependency in the ...
1
vote
1
answer
304
views
Xcode 26.0.1 - Swift Package Manager build fails with AlamofireDynamic.framework “No such file or directory”
I recently updated to Xcode 26.0.1.
When I try to add Alamofire (or any other library) via Swift Package Manager in a new test project, the build fails with this error:
No such file or directory: '/...
0
votes
0
answers
137
views
Can't build Xcode project when using the Swift Package Manager
I wanted to move away from CocoaPod because of the latest changes and now using all the packages with Swift Package Manager.
The only one that I have issue with is FirebaseUI-OS/Storage version 15.1.0....
0
votes
1
answer
323
views
When trying to add Firebase-iOS-SDK to my project, Failed to resolve dependencies
Xcode 26b7 & Xcode 16.4
I added this line to my Package.swift:
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "12.2.0")),
And get this ...
-2
votes
1
answer
114
views
Installing Sourcery using the SPM [closed]
I want to add a Sourcery to my project and I use the official documentation for this: https://krzysztofzablocki.github.io/Sourcery/installing.html
I need the option via the SPM.
I downloaded and did ...
0
votes
0
answers
110
views
Cursor don't show SwiftPM Dependencies
I successfully added Swift Package Manager (SPM) dependencies to my project in Xcode, but when I open the project in Cursor, the project files show up fine, but none of the SPM dependencies are ...
-2
votes
1
answer
111
views
Direct Swift C++ interop to integrate with the C++ using OpenCV [closed]
I am developing SPM and want to integrate C++ code base into SPM using Swift C++ interop.
I have added c++ file in the SPM and tried to call CPP function in the swift file but it does not work.
Below ...
0
votes
1
answer
168
views
How can I upgrade to Facebook iOS SDK v18.0.0 using Swift Package Manager?
I'm trying to upgrade the Facebook iOS SDK in my Swift-based iOS app using Swift Package Manager (SPM).
Currently, my project is locked at version 14.1.0 with the rule set to Up to Next Major Version.
...
0
votes
0
answers
198
views
Use Swift open source library with SPM
I have a React Native app using Expo, and I need to integrate a Swift open-source library that doesn’t have any React Native bindings. Since I need to make some custom modifications to that library, I ...
2
votes
0
answers
133
views
How to install NATIVE iOS mapbox navigation SDK in EXPO
Is there any way to use the native iOS mapbox navigation sdk in an expo module WITHOUT using a third party expo or react-native package?
I'm following this expo guide on how to Wrap third-party native ...