My TVML layout looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<document>
<head>
</head>
<mainTemplate>
<background>
<img src="https://www.myserver.com/images/myimage.jpg" />
</background>
<menuBar>
<section>
<menuItem>…</menuItem>
<menuItem>…</menuItem>
</section>
</menuBar>
</mainTemplate>
</document>
…but what if I want to reference that background image path within my tvOS app resources itself? Like
<background>
<img src="pkg:/images/myimage.jpg" />
</background>
This has to be simple, but I’ve yet to find an answer in online docs. Thanks!