Remote logo on Overhang

HI All,

We are new to Roku and have a really simple question that we cant work out regarding the logo on overhang.

Using Hero-Grid-Channel as our basis:
https://github.com/rokudev/hero-grid-channel

We have been able to understand about 95% of what comes from where (how it all works etc). The only thing we can’t work out, where does the logo pull from at the top left? I have looked for ‘logoUri’ and it is not specified in heroScene.xml - so is that why the default Roku logo is displayed.

What is the best way to pull our brand logo in from our webserver (example http://www.domain.com/apps/roku/images/logo.png) and can this be varied based on HeroScreen / DetailsScreen?

Thanks for your help in advance!
B

Set logoUri of your overhang to your remote URL; https://sdkdocs.roku.com/display/sdkdoc/Overhang
If you don’t specify anything (or annoyingly, even if you specify “”) you get the default Roku logo there. To have it be blank I’ve had to use " " which triggers a warning in debug, but otherwise works. To avoid the warning guess you could come up with a blank png and specify that in the pkg images.

Thanks for the fast reply. I’m glad you mentioned about using ‘logoUri=" "’ that explains why I couldn’t hide the default one.
Thats been really helpful, thanks!

Hi, After so much trying, I modified the heroscene.xml file located in: hero-grid-channel-master/components/heroscene.xml
I added the logoUri in the

“LuisSalazar” wrote:
Hi, After so much trying, I modified the heroscene.xml file located in: hero-grid-channel-master/components/heroscene.xml
I added the logoUri in the

Thanks for the help on this. I was banging my head against the wall on this one as well and searching what I thought was everything. Thank you!!