When building a Java projekt with j2objc
in command line, I specify all needed dependencies JARs with the -classpath
attribute, e.g.: httpclient-4.4.1.jar or others.
This works for all dependencies except classes from namespace javax.*
(e.g. javax.xml) I can't specify since I don't know in which package they are.
How would I link the javax.*
JAR - which are part of JRE itself, if I'm right? Running the exact same command with javac
compiles fine without warnings.