Hi guys,
I needed to transfer my app from my own account to another Apple Developer Account but once I pushed the button "Transfer App" I get this error:
Sandboxed Group Container
You can only transfer sandboxed apps that are not sharing a group container. So I'm basically blocked. Is there a way to transfer it anyway? Maybe uploading a new version or something?
Thanks.
Post
Replies
Boosts
Views
Activity
Hi guys,
Based on the documentations looks like possible to implement Picture in Picture in tvOS on the same way as on iOS/iPadOS.
So, I tried to implement it yesterday but for some reasons when I'm calling "startPictureInPicture" it's not starting and I'm receiving "false" from "isPictureInPicturePossible"
Below the code that I used for setup PiP:
// Ensure PiP is supported by current device
if AVPictureInPictureController.isPictureInPictureSupported() {
// Create new controller passing reference to the AVPlayerLayer
if let playerLayer = playerLayer {
pictureInPictureController = AVPictureInPictureController(playerLayer: playerLayer)!
pictureInPictureController.delegate = self
}
} else {
// PiP not supported by current device. Disable PiP button.
print("PIP NOT SUPPORTED BY CURRENT DEVICE")
}
}
I wish to know if in somehow it's possible to increase programmatically the volume of the AirPlay speaker connected to my iOS Device. In specific, for increase or decrease programmatically the volume when NOT connected to Bluetooth I'm using the following code:
		let volumeView = MPVolumeView()
		let slider = volumeView.subviews.first(where: { $0 is UISlider }) as? UISlider
		DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.001) {
				slider?.value = volume
		}
}
But the above code is not working for AirPlay audio's. It's only for device volume. Does anyone have any idea on how to increase the AirPlay audio programmatically ? Thanks 🙏