Hi Everyone,
When I build a Standalone Package I see run_debug as part of the files. Can I create a batch file that runs the app Not in debug mode?
it seems like the flag -m makes the app run in debug mode. What would be a flag for not in debug mode?
Batch File
Thanks.
When I build a Standalone Package I see run_debug as part of the files. Can I create a batch file that runs the app Not in debug mode?
it seems like the flag -m makes the app run in debug mode. What would be a flag for not in debug mode?
Batch File
B4X:
cd bin
java.exe @release_java_modules.txt -m b4j/b4j.example.main
pause
Thanks.