Hi Erel,
This is an existing application, I have to change all the code now for new build just for app review guidelines (Action required: Answer the updated age rating questions.). I am not using B4Xpages. Could you please suggest some alternative.
Also when I debug using b4i-bridge (hosted builder) shows blank/white page, It's going through all the break points but not loading page layout. Please suggest.
Here is my sample code.
Private Sub Application_Start (Nav As NavigationController)
Dim nc As NavigationController
nc.Initialize("nc")
NavControl = nc
Page1.Initialize("Page1")
Page1.Title = "My Comp"
Page1.RootPanel.Color = Colors.White
'Root.LoadLayout("mainlayout")
Page1.RootPanel.LoadLayout("MainLayout")
nc.ShowPage(Page1)
End Sub