Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
sandeepthakur
Binge Watcher

Your channel must fire "AppLaunchComplete" beacon to pass certification.

Jump to solution

I am getting this error in static analysis during re-submission process of my package/channel after some updates. 

Can someone help me to get this resolve. 

0 Kudos
1 Solution

Accepted Solutions
chaklasiyanikun
Roku Guru

Re: Your channel must fire "AppLaunchComplete" beacon to pass certification.

Jump to solution

Do you get an error like the one below?

"performance": ["Your channel must fire \"AppLaunchComplete\" beacon to pass certification. [Cert Requirements: 3.2]."]

Make sure the following code is added to your mainscene : 

Screen = CreateObject("roSGScreen")
Scene = Screen.CreateScene(componentName)
Screen.Show() Scene.signalBeacon("AppLaunchComplete")

and for channel launch timing, please refer the performance certificate criteria.

View solution in original post

3 REPLIES 3
chaklasiyanikun
Roku Guru

Re: Your channel must fire "AppLaunchComplete" beacon to pass certification.

Jump to solution

Do you get an error like the one below?

"performance": ["Your channel must fire \"AppLaunchComplete\" beacon to pass certification. [Cert Requirements: 3.2]."]

Make sure the following code is added to your mainscene : 

Screen = CreateObject("roSGScreen")
Scene = Screen.CreateScene(componentName)
Screen.Show() Scene.signalBeacon("AppLaunchComplete")

and for channel launch timing, please refer the performance certificate criteria.

sandeepthakur
Binge Watcher

Re: Your channel must fire "AppLaunchComplete" beacon to pass certification.

Jump to solution

I am getting below error message on static analysis page in developer dashboard when we re-submit app for publishing. In static analysis its showing error . So not able to submit app for publishing due to this.

"Your channel must fire "AppLaunchComplete" beacon to pass certification."

 

0 Kudos
chaklasiyanikun
Roku Guru

Re: Your channel must fire "AppLaunchComplete" beacon to pass certification.

Jump to solution

I Edited My above Post Please check. The beacon report appears in your console like below image. Make sure your AppLaunchComplete time is less than 15, 000 ms or 20,000 ms.

0 Kudos