Is there a facility in B4A that is similar in functionality to B4J's #CommandLineArgs? I've ran into an issue (see https://www.b4x.com/android/forum/threads/use-foreign-java-code.158943/post-975812) where the compiler produces the following (abbreviated) error message:
According to a post I found here (https://stackoverflow.com/a/69179997), if I could pass
Note:
I've tried JDK 8, 11, 14, and 18 with the same/similar results, just in case anyone wants to know.
Compiling generated Java code. Error
An exception has occurred in the compiler (18.0.1). Please file a bug against the Java compiler via the Java bug reporting page (http://bugreport.java.com) after checking the Bug Database (http://bugs.java.com) for duplicates. Include your program, the following diagnostic, and the parameters passed to the Java compiler in your report. Thank you.
java.lang.NullPointerException: Cannot invoke "com.sun.tools.javac.code.Symbol.flags()" because "base" is null
According to a post I found here (https://stackoverflow.com/a/69179997), if I could pass
to the compiler, I might be able to proceed with the above project. But for now, I'm just stuck.--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED
Note:
I've tried JDK 8, 11, 14, and 18 with the same/similar results, just in case anyone wants to know.