Post

Replies

Boosts

Views

Activity

"your session has expired, please log in"
i repeatedly am getting this message for 1 account when trying to upload to the app store from xcodei tried to delete the account and re-login, and tried xcode7.3 and xcode8i am able to log in to developer.apple.com and itunesconnect.apple.com with this accountand i am able to log in to xcode with a different accountthe account seems up to date (contracts accepted, etc)any one have any clues as to what is going on?
26
0
21k
Jul ’22
in-app purchases rejected for "business model" but no details on how to fix
We are in an app review loop trying to get an in-app purchase approved with this message (below)However, we did what they said and resubmitted a binary (essentially the same binary we submitted before but witha new build number), but then the in-app purchase is rejected for the same reason, with no additional explanation.Is there a way to escalate this and talk to someone to figure what is going on? This is for a pre-existing app in the app store, not a new app.In-App Purchase - New Business ModelWe have begun the review of your in-app purchase but aren't able to continue because your submitted in-app purchases indicates a change of business model for your app. Therefore, we need to verify the implementation of your submitted in-app purchases in the app to ensure your app, and its in-app purchases, are in compliance with the App Store Review Guidelines.Next StepsPlease upload a new binary for review and resubmit your in-app purchase(s) with the binary so that we can continue the review.
10
1
6.0k
Jun ’23
macos app non-store distribution question / hardened runtime
i would like to code sign a mac app but leave out the hardened runtime business because some third party libraries (python-related if it is important) are causing troubles with that. e.g. the benefit of code signing is that it keeps people from modifying the app contents. this is of course a benefit even without the hardened runtime. is there a way to do this any more? it seems like it used to be an option. i realize this requires non app store distribution.
4
0
1.1k
Oct ’22
icloud media retrv'l ... speed up?
we are doing something like this to get photo data from photo kit (see code) however, when the media is on iCloud, it seems like it is trying to pull the highest res possible (e.g. for RAW photos or ProRes vid maybe). which can take a lonnnng time if you are on a cellular net. this completely bogs down the app. is there a recommended way to get a normal res media item from this (e.g. not pull the highest res from icloud?); either a standard jpeg or a lower res movie? [phasset requestContentEditingInputWithOptions:options                                          completionHandler:^(PHContentEditingInput *contentEditingInput, NSDictionary *infoin) {
4
0
1.3k
Mar ’23
random pause events recv'd HTML5 video tag
has any one seen this and/or know the solution?what could cause a pause event to get triggered? we can trap when the event gets caught in the safari debuggerbut unable to see what is causing it. like who is sending the event? is there any way to trace the sending of media events in safari? we get random pause events recv'd by our video tag, a few seconds after video start.seems to be on videos with audio playing Only, ios10.3 and upokay on ios10.2UIWebView implementation
3
0
3.2k
Sep ’21
AVAssetWriter fail in background
We are using AVAssetWriter to write a movie file. All works fine, but when the app goes into the background and pauses operations, we would expect the writer to come back to life when you bring the app back into the foreground. However, it does not, it fails with this error code. Any hints, workarounds? Error Domain=AVFoundationErrorDomain Code=-11847 "Operation Interrupted" UserInfo={NSLocalizedRecoverySuggestion=Stop other operations and try again., NSLocalizedDescription=Operation Interrupted, NSUnderlyingError=0x2820356b0 {Error Domain=NSOSStatusErrorDomain Code=-16121 "(null)"}}
3
1
2.3k
Sep ’21
AVFoundation error -11829 "Cannot Open" (random-ish fail on same url)
trying to use AVPlayer on a remote (https:) mp4 file. randomly we get the above error on the exact same url. works fine on other urls. sometimes works on the failing url. no clue what is going on. "cannot open" is not a descriptive error message. the url plays fine in a browser. the random fail happens on some other URLs also. is there some way we can get more detailed error notes on what is causing the failure? using latest ios15.x update on iphone12 mini. does not seem to fail on iphone X (same ios level). which is also strange.
3
0
1.6k
Sep ’22
dispatch_async to global much slower in recent Mac Catalyst versions?
has anyone else noticed much slower GCD runs in newer MacOS / Catalyst this seems like it used to be blazing fast: dispatch_async(dispatch_get_global_queue(QOS_CLASS_USER_INTERACTIVE, 0), ^{ // code to run }); now if I run a block on this type of queue versus the main thread, the dispatched code runs much slower vs main thread. not 10%, like multiple slower. i am not sure yet if it is the code run time or time for dispatch to trigger. trying to focus in on what is the problem on our side and get some metrics, but if anyone has seen this issue, it might be useful to compare notes.
3
0
1.3k
May ’23
AVAssetExportSession fails part way thru for long videos
as in the above note, shorter videos, say, less than 1 hour playing time seem to export ok. this is just a time clip operation we are doing not a composition. but when we put videos longer than an hour and try to clip them to an hour, the export fails part way thru we can see the .progress property proceeding then we get the mysterious unknown error code: An unknown error occurred (-12551) as noted below in our console output apple any hints besides unknown? surely your code knows why it failed. why not tell us?! the "code = " listed below is the .status which shows as 4 waiting for trimmed movie file save 1 progress = 0.692948 2021-03-08 14:55:52.702278-0500 KargoCamera[1598:154227] Export failed: The operation could not be completed code = 4 2021-03-08 14:55:52.702412-0500 KargoCamera[1598:154227] Export recovidea: (null) 2021-03-08 14:55:52.702507-0500 KargoCamera[1598:154227] Export reason: An unknown error occurred (-12551)
2
0
851
Apr ’21