B4J Question How to create runnable jar?

KingEdem

Member
Licensed User
Longtime User
I used webview control in b4j, it opens simple html pages but not gmail or other pages having js script etc.
I need to create executable jar which can run on raspbian pi.
Pls help!
 

EnriqueGonzalez

Well-Known Member
Licensed User
Longtime User
1.- webview is not a full fledged browser, so do not thrust it

2.- to create an executable jar, compile in release mode and go to your porject folder (where the .b4j program is) there will be a objects folder, insde that folder is your jar

3.- UI apps (the ones that use the webview for example) do not run in raspberry. you will have to do acrobatics for it and it is not worth it.
 
Upvote 0

KingEdem

Member
Licensed User
Longtime User
1.- webview is not a full fledged browser, so do not thrust it

2.- to create an executable jar, compile in release mode and go to your porject folder (where the .b4j program is) there will be a objects folder, insde that folder is your jar

3.- UI apps (the ones that use the webview for example) do not run in raspberry. you will have to do acrobatics for it and it is not worth it.

Thanks for the quick response. :)
 
Upvote 0
Top