B4J Question Build Standalone Package

Dey

Active Member
Licensed User
Longtime User
Hi everyone
Using Build Standalone Package opened once I have to deploy the build folder
if I make a small change, do I always have to deploy the complete build folder?
what files are involved in the modification?
Thank you
 

MarcoRome

Expert
Licensed User
Longtime User
Hi everyone
Using Build Standalone Package opened once I have to deploy the build folder
if I make a small change, do I always have to deploy the complete build folder?
what files are involved in the modification?
Thank you

1. Yes
2. Usually only the jar file (which however must be recompiled in the package because it is transformed into an exe on windows or is involved in the app extension on Mac) when compiling most of the files contained in the Object/Temp directory and especially object/temp /build.
In short, you should redo the package to be distributed
 
Upvote 0

Dey

Active Member
Licensed User
Longtime User
1. Yes
2. Usually only the jar file (which however must be recompiled in the package because it is transformed into an exe on windows or is involved in the app extension on Mac) when compiling most of the files contained in the Object/Temp directory and especially object/temp /build.
In short, you should redo the package to be distributed
Hi MarcoRome, thanks for the reply,
I did some tests, small changes to the app
it seems that you just need to copy the modules file located in the lib folder
 
Upvote 0
Top