B4J Question Problem starting B4J program in Raspberry

mmanso

Active Member
Licensed User
Longtime User
Hi there,

I've followed this guide:


And I was almost getting my B4J program to run on Raspberry. What happens is when I start it with:

java -jar MyProgram.jar

I see this:

pi@raspberrypi:~ $ java -jar MyProgram.jar
Here I am...
*** mainpage: B4XPage_Appear
Call B4XPages.GetManager.LogEvents = True to enable logging B4XPages events.
*** mainpage: B4XPage_Resize [mainpage]

And no windows appears.

The "Here I am" is Log() I've created:

B4X:
Private Sub B4XPage_Created (Root1 As B4XView)
    Root = Root1
    Root.LoadLayout("MainPage")
    
    Log("Here I am...")
End Sub

Anyone has a clue why the "default" windows in the B4J template doesn't open? It works fine on my win32 box.

Thanks.
 
Top