The information from the subscriptions management is also a bit confusing as it claims the payment method was declined and suggests updating it.
Post
Replies
Boosts
Views
Activity
Thanks for your response!
I tried it on on the visionOS2.0 beta but it didn't work.
The same code works fine on iOS18.
I created a feedback with a video and sample project: FB14008833
Thanks!
@Vision Pro Engineer
Thank you for your helpful response!
Setting the window.layer.zPosition does solve the layering issue.
Though it's a bit confusing that the backing window has zPosition = 0 :)
@Vision Pro Engineer
Thanks for your response.
We filed a feedback FB13938325 with sample code and a video recording.
@lg_bitmovin
I presume that 4294955417 corresponds to -11879 which is AVError.Code.contentKeyRequestCancelled.
https://developer.apple.com/documentation/avfoundation/averror/code/contentkeyrequestcancelled
You can achieve it on Xcode 14.3 by specifying arch=x86_64 in the destination.
But be aware that this sadly makes xcodebuild ignore all the other destination constraints you specify and the first found simulator will be used :-(
-destination 'platform=iOS Simulator,name=iPhone 14,arch=x86_64'
Something similar is still happening in iOS16.3
A user is playing a live stream.
The user puts the app to background resulting in Picture-In-Picture being activated.
The application is brought to foreground resulting in player UI to be restored and PiP to be stopped.
Later:
A VC is presented over player VC. (modalPresentationStyle = .currentContext)
At this time playback is automatically paused with the rateDidChange reason as AVPlayerRateDidChangeReasonAppBackgrounded.
In case any Apple people checks, there's a Feedback related to this question: FB9987422.
One one of my machines I have two expired certificates:
"Apple iPhone Certification Authority" and
"Apple iPhone OS Provisioning Profile Signing"
It expired (UTC +0) Tue, 12 Apr 2022 17:43
(10:43 PDT)
Seems very related...
I'm looking for the same answer.
I need to verify that our website can handle an error message correctly when Rosetta isn't installed.
(Related to the Widevine dylib of Chrome not yet being available as Apple Silicon version).
I have found no way to disable Rosetta completely, disable it only for the specific dylib, or uninstall Rosetta.
Only solution so far is to reinstall macOS...
Any advice would be highly appreciated.
We also noticed that this behavior changed from 14.2.
The issue seems to have been resolved with the Xcode 12.3 release.
I'm assuming that this "Known Issue" from Xcode 12.2 release notes is the same as the issue we are discussing here.
Known Issues Simulators may not be available when running command-line tools like simctl or xcodebuild from a non-root LaunchDaemon, or when launching as a different user from the current user (for example, with sudo or launchctl). (62188195) https://developer.apple.com/documentation/xcode-release-notes/xcode-12_2-release-notes
Same problem here when building on Jenkins CI.
The jenkins node is launched through a launchd daemon.
/Library/LaunchDaemons/org.jenkins-ci.node.jnlp.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
				<key>KeepAlive</key>
				<true/>
				<key>Label</key>
				<string>org.jenkins-ci.node.jnlp</string>
				<key>ProgramArguments</key>
				<array>
								<string>/bin/bash</string>
								<string>/Users/user/jenkins/node.jnlp.sh</string>
				</array>
				<key>RunAtLoad</key>
				<true/>
				<key>SessionCreate</key>
				<true/>
				<key>StandardErrorPath</key>
				<string>/Users/user/jenkins/org.jenkins-ci.node.jnlp.stdout.log</string>
				<key>StandardOutPath</key>
				<string>/Users/user/jenkins/org.jenkins-ci.node.jnlp.stderr.log</string>
				<key>UserName</key>
				<string>user</string>
				<key>WorkingDirectory</key>
				<string>/Users/user/jenkins</string>
</dict>
</plist>
Loading this as root gives us the failure as previous posters (Unable to open liblaunch_sim.dylib):
sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.node.jnlp.plist
But instead loading without sudo when running as the user specified by UserName everything passes:
launchctl load /Library/LaunchDaemons/org.jenkins-ci.node.jnlp.plist
Though my understanding is that the UserName key will run the script as the same user as my second example.
I just don't have enough understanding of launchd to figure out how to solve the issue...
Hi,
I created feedback 7794385 and attached the diagnose file.
Thanks!