I have a jar called MyMathsJar
.
I added it in the build path.
I can access to its content in the default package of my current project and it is working fine.
MyMaths m = new MyMaths();
System.out.println(m.addition(1, 3));
However, if I want to do the same thing in the package customerPack
in my current project it is not working. I got this error :
MyMaths can not be resolved as a type.
Someone can explain me why please? Thank you.