6,079 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
364
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: '/...
1
vote
1
answer
61
views
Alamofire network api request for uploading images failed on putting application into background ios
The updated API request which support background execution, for uploading images to server.
UIApplication.withBackgroundTask(name: "UploadImage") { endTask in
self.ShowHUD()
...
1
vote
0
answers
51
views
How to use custom framework with third-party framwork in my test ios project?
I have a test ios project.
And I built my custom framework. The custom framework uses thirt-party framework using cocoapods: for example, Alamofire Library.
My custom framework's build is successfull.
...
0
votes
0
answers
141
views
Nonisolated error for Alamofire library in Swift 6
I've been asked to refactor the entire code of this project to work on Swift 6
I'm almost done with the refactoring except for this last APIRouter class which conforms to Alamofire's ...
0
votes
1
answer
41
views
Why is Alamofire download destination a parameter and not a closure?
When using Alamofire to download a file you have to declare the destination handling functionality as a property and pass it. Like shown in the alamofire examples:
let destination: DownloadRequest....
-1
votes
1
answer
56
views
Response key value position changing in iOS swift
I am using Alamofire for API call
Actual response, when I call api in browser or POSTMAN:
{
"code": 200,
"message": "Listing found.",
"data": [
{
...
0
votes
1
answer
58
views
Alamofire certificate pinning MITM
I have a problem with my evaluate function with Alamofire. It works fine for most cases, but it does not go through the security check. They use a MITM solution, they also pre-installed a cert to the ...
2
votes
1
answer
5k
views
How can I resolve "Missing Privacy Manifest" errors for third-party iOS SDKs? [duplicate]
I'm receiving the following error during TestFlight submission for my iOS app:
ITMS-91061: Missing privacy manifest - Your app includes "Frameworks/Alamofire.framework/Alamofire", which includes ...
-1
votes
1
answer
115
views
App is running in background though it should not
Let's brainstorm. I have a messenger-like app. When I send a message to a chat, there are many network request being sent, a lot of UI is redrawn and a lot of print logging performed. This might take ...
1
vote
1
answer
304
views
Why does adding Alamofire with SPM result in a "no such file or directory" error?
I decided to create a small simple chat app to get familiar with certain API responses and how to use Alamofire package since I've never used that library, and also new to this particular API (TLDR ...
0
votes
0
answers
64
views
Why is my swift alamofire sending get instead of post, also happened when i did not use the module?
import SwiftUI
import Alamofire
struct TestView: View {
// Function to send the POST request using Alamofire
func sendPostRequest() {
// URL and data
let url = "&...
1
vote
0
answers
101
views
SwiftShield Obfuscation Fails to Exclude Pods Files Properly
I am using SwiftShield to obfuscate my project, but despite using exclusion flags (--ignore-names, --ignore-targets), it continues to process certain files from the Pods directory, causing errors. ...
0
votes
1
answer
278
views
Swift Alamofire: why when I upload multipart/form-data I always get "Request Body None"
I'm trying to upload a multipart/form-data request using Alamofire in Swift to my backend running on localhost:8080. When I send the request, the server response is a 403 error, and the request body ...
0
votes
1
answer
112
views
How to decode non-JSON data using Alamofire library
I have using a API Response that is not in JSON format but wanted to still decode it, what are the ways that can achieve this stage.
Right now the response is failing, Failed to decode JSON: ...
1
vote
1
answer
85
views
Alamofire request returning no results
Trying to fetch JSON data from an external website for two ISBN numbers and the Curl from that site is shown below. When using the AF.request it works fine for one isbn but when trying the string in ...