I'm using the SLC to create a wrapper around toughpad.jar
But when testing and running SLC I get an error
"package com.panasonic does not exist"
When opening the *.java in eclipse then I get (when typing) a reference to the library. I've added an zip with the folder which I'm using in SLC.
Any thoughts?
But when testing and running SLC I get an error
"package com.panasonic does not exist"
B4X:
package jds.b4a.toughpad;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.BA.DependsOn;
import anywheresoftware.b4a.BA.ShortName;
import com.panasonic.*; /** failes on this line**/
@SuppressWarnings("unused")
@ShortName("ToughPad")
public class Toughpad {
public int multiply(int x) {
return x * 2;
}
}
When opening the *.java in eclipse then I get (when typing) a reference to the library. I've added an zip with the folder which I'm using in SLC.
Any thoughts?