Search results for

We are unable to process your request

69,628 results found

Post

Replies

Boosts

Views

Activity

Xcode bot failure: error: unable to spawn process (Argument list too long)
Xcode Version 10.1 (10B61)Project consists of many (Swift + Objective-c) files.Xcode bot fails to archive with following error: (Build succeeds)error: unable to spawn process (Argument list too long)** ARCHIVE FAILED **Command failing:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incrementalProject builds and archieves successfully on Xcode manually, but fails on bot.
0
0
2.1k
Jan ’19
Reply to Xcode 10: iPhone has denied the launch request.
I had a similar problem: iPhone has denied the launch request. Internal launch error: process launch failed: The operation couldn’t be completed. Unable to launch because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user. So I went to Settings --> Device Management --> Apple Development --> Trust app After this, it worked!!
Jul ’20
Reply to Unable to validate app
I am still unable to validate the app. Validation continues to fail with the message:iTunes Store operation failed.Unable to process validateProductSoftwareAttributes request at this time due to a general error.The app has been in the Mac App Store for a while, and the build settings haven't changed. The version that generates the error is built with Xcode 7.3 and am planning to roll back to a previous version to see if that is the culprit.-sjs
Apr ’16
Reply to About SKProduct.discounts (new in iOS 12.2)
Hi, I'm try to implement this new feature of the storekit framework,I followed the guide on: https://developer.apple.com/documentation/storekit/in-app_purchase/implementing_subscription_offers_in_your_app. I create the SKPaymentDiscount, after this I send the payment request in sandbox mode, but I receive during the purchase process an error: Unable to Purchase. I can't understand what the problem may be, I hope someone can help me. I attach a screen => https://www.tuunes.org/screen.png
Topic: App & System Services SubTopic: StoreKit Tags:
Apr ’19
Refreshing fetch request when background process (share extension) updates it
Hi all, I have a share extension which is adding data to a CoreData database via an instance of DataManager. However when testing and outputting the content of fetch request using a button in the main app, I see that the fetch request does not have the new results after they are added by the share extension until I force close the app and reopen it. I have tried refreshing the data using the refresh method defined below as well but without luck. DataManager import Foundation class DataManager: ObservableObject { let container: NSPersistentContainer static var preview: DataManager = { let controller = DataManager(inMemory: false) return controller }() init(inMemory: Bool = false) { container = NSPersistentContainer(name: DataModel) if inMemory { container.persistentStoreDescriptions.first!.url = URL(fileURLWithPath: /dev/null) } else { let storeURL = URL.storeURL(for: group.Highlightly, databaseName: DataModel) let storeDescription = NSPersistentStoreDescription(url: storeURL) container.persi
0
0
999
May ’23
Unable to display real time Process() output to NSTextView in release mode
I wanted to display output from Process() to NSTextView in real time. Below are my code snippets: func displayOutput (_ task:Process) { let outputPipe = Pipe() setvbuf(stdout, nil, _IONBF, 0) dup2(outputPipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO) task.standardOutput = outputPipe outputPipe.fileHandleForReading.readabilityHandler = { pipe in if let outputString = String(data: pipe.availableData, encoding: String.Encoding.utf8) { if outputString.count > 0 { DispatchQueue.main.async(execute: { print(outputString, separator: n, to: &self.outputTextView.string) let range = NSRange(location:self.outputTextView.string.count,length:0) tself.outputTextView.scrollRangeToVisible(range) } } } } } The above code snippets only works in debug mode. Nothing displays on the NSTextView besides the initial text when it's in release mode.
1
0
522
Oct ’20
NSUnderlyingError on MDM managed devices
Our iOS devices are managed by our AirWatch Workspace ONE UEM. Recently we have encountered a problem where the VMware Hub application is unable to process installation requests for approved public iOS applications. Below is the error observed with the exclusion of the URL link information... 2021-04-12 15:08:39:347 3682687 [E] [Error] GET 'WorkSpace ONE Access URL' [2577.4581 s] Error Domain=NSURLErrorDomain Code=-1001 The request timed out. UserInfo={NSUnderlyingError=0x28013c9f0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 (null) UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey='WorkSpace ONE Access URL, NSErrorFailingURLKey='WorkSpace ONE Access URL, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=The request timed out.} [com.air-watch.agent NetworkLogger:95] 2021-04-12 15:08:39:347 3682668 [I] Saved samples of type AWDataSampler.DataSamplerDataUsageModule [com.air-watch.sdk.dataSampler
0
0
1.6k
Apr ’21
Forbidden request when using API in Codemagic( Unable to find a team with the given Content Provider ID )
Failed to fetch certificates: This request is forbidden for security reasons - Unable to find a team with the given Content Provider ID '72df6041-c291-4d95-b690-2a3b75ff72f6' to which you belong. Please contact Apple Developer Program Support. https://developer.apple.com/support I have already confirmed that: All API keys were generated correctly. All required roles and permissions have been assigned in App Store Connect. To confirm my doubt, I requested api key from a fellow developer, and that worked in CodeMagic without throwing an error. Could you please help me figure out why the given Content Provider ID is not being recognized? Thank you.
3
0
298
Sep ’25
Reply to MacBook Air M4 - Battery Drain During Sleep
I've tried to optimise everything - reducing tcpkeepalive, special feature flags, etc. Still my macbook wakes up every 10 minutes~ averaging 45 times a night (not limited to night!). $ pmset -g stats Sleep Count:42 Dark Wake Count:42 User Wake Count:1 This is the list of process / info strings I've got from pmset -g log for this night (unique): [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.bluetooth.CBMetrics] [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.CoreAnalytics.2Hours] [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.MobileAccessoryUpdater.deviceIdleCheck] [*process=dasd request=SleepService info=com.apple.dasd:501:com.apple.duetexpertd.apppredictionupdate] [*process=dasd request=SleepService info=com.apple.dasd:501:com.apple.intelligenceplatform.IntelligencePlatformCore.ViewEvery2Hours] [*process=dasd request=SleepService i
Topic: Community SubTopic: Apple Developers Tags:
Aug ’25