Hello, just upgraded from 3.5 to 5.8.
For some reason, i can't run the debugger anymore. I can install and run Release versions just fine, without any errors, but the debugger installs the app, goes into "waiting for ide..." and then leaves the foreground after a few seconds, out putting this log:
I just updated, so no starter service(or the newest additions) yet...
Thanks
For some reason, i can't run the debugger anymore. I can install and run Release versions just fine, without any errors, but the debugger installs the app, goes into "waiting for ide..." and then leaves the foreground after a few seconds, out putting this log:
B4X:
:null,0
java.lang.RuntimeException: Object should first be initialized (Activity).
Did you forget to call Activity.LoadLayout?
B4X:
Sub Globals
Dim TabHost1 As TabHost
...
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("guihost")
TabHost1.AddTab("1", "splash")
TabHost1.AddTab("2", "Layout1")
TabHost1.AddTab("3", "Layout2")
TabHost1.AddTab("4", "Layout3")
.....
Thanks