Posts

Post not yet marked as solved
2 Replies
3.4k Views
Documentation says that apple-app-site-association file needs to be accessible via HTTPS—without any redirects.However practice shows, that when this file accessible via redirect, Universal Links are working.Is documentation outdated?Can we rely on this behaviour?
Posted
by TimurKhay.
Last updated
.
Post not yet marked as solved
0 Replies
390 Views
We are using standard way of playing videos with AVPlayerItem and AVPlayer. After each AVPlayerItemDidPlayToEndTime notification we call player.seek(to: .zero), which makes some of the videos to be redownloaded every time. Those videos have one thing in common. When AVPlayerItem.status is changed to .readyToPlay, AVPlayerItem.currentTime() != .zero When seeking to initial AVPlayerItem.currentTime() instead of .zero on each loop, looks like video start from the beginning and is not being redownloaded. What could make AVPlayerItem.currentTime() be not .zero, while not being played yet. Could seeking to initial AVPlayerItem.currentTime() actually solve the problem of videos being redownloaded?
Posted
by TimurKhay.
Last updated
.