Hello,
I'm working on a JavaME project and need to import external libraries, which are available to me as jar files. So I selected the project properties -> libraries & resources -> add Jar/Zip and added the jar file there.
When editing the code, everything works. I can import the classes from this library and use them as expected. But when I try to compile the project, I'm getting the error...
package <packagename> does not exist
...at the line
import <packagename>.<classname>;
Like I said, no error or warning shows up when editing the code. The library is correctly shown in the project view under "Resources" and the Netbeans autocomplete works as well. The error occurs only when compiling.
I'm quite sure, there's a simple solution to this, but I just can't find it.
Thanks in advance for any help or tips!