Hi,
I followed along with this YouTube tutorial and wrote up all the .brs and .xml files by hand, with some minor adjustments (comments, and RSS feed URL etc)
I have sucessfully sideloaded it onto a roku device, however it is not advancing past the Load screen. My Splash Screen shows for a fraction of a second, and then the string that I had put in MainScene.xml is visible, along with the correct hexidecimal colour for the background.
<Label id="loadingIndicator" text="Loading. Please Wait" width="1280" height="720" translation="[0,0]" horizAlign="center" vertAlign="center" visible="false" font="font:MediumBoldSystemFont" />
However, the app is not advancing past this. I have checked MainScene.brs and Main.brs for typos etc, and sideloaded the updated files, but it's still remaining on this screen.
I want to see if my feed can show up correctly, as I am trying to enable the RAF in order to monetise. I have a feed working correctly with a Direct Publisher Channel, but the ad server I am engaged with needs it to be an SDK channel.
Here is the code I have for components > tasks > MainLoadertask.brs
sub Init() m.top.functionName = "GetContent" end sub sub GetContent() xfer = CreateObject("roURLTransfer") xfer.SetCertificatesFile("common:/certs/ca-bundle.crt") xfer.SetURL("https://vimeo.com/showcase/8111312/feed/roku/4a6071e726") rsp = xfer.GetToString() rootChildren = [] rows = {} ' parses the feed to build content tree json = ParseJson(rsp) if json <> invalid for each category in json value = json.Lookup(category) if Type(value) = "roArray" if category <> "series" row = {} row.title = category row.children = [] for each item in value itemData = GetItemData(item) row.children.Push(itemData) end for rootChildren.Push(row) end if end if end for contentNode = CreateObject("roSGNode", "ContentNode") contentNode.Update({ children: rootChildren }, true) m.top.content = currentNode end if end sub function GetItemData(video as Object) as Object item = {} ' populates standard metadata on screen if video.longDescription <> invalid item.description = video.longDescription else item.description = video.shortDescription end if item.hdPosterURL = video.thumbnail item.title = video.title item.releaseDate = video.releaseDate item.id = video.id if video.content <> invalid item.length = video.content.duration end if return item end function
Thanks in advance.
you will probably have more luck in this forum
https://community.roku.com/t5/Roku-Developer-Program/bd-p/roku-developer-program
This if the IDK forum which is not for scenegraph channels
It would be had to say why you channel is not working. with what you have posted. What does the debug console output say?
I was able to power through and continue through the tutorial. I couldn't see a way to withdraw this Q, but thanks for the response, and the direction to the appropriate forum.