Anyone could help me on how to make a plugin to show to in servoy editor … i think the problem is in the package path created in eclipse … i was using before “com.servoy.r2.plugins” and it was working fine but now i’m using servoy 3.1.6 and it is not working anymore … could the package be “com.servoy.extensions.plugins.myname” similar to the imported mail plugin for example
We have renamed our com.servoy.r2 plugins internally.
For backward-compatibilty, we support the old names which probably breaks non-servoy plugins starting with com.servoy.r2.
The solution it to use your own package name for your own plugins.
I made it work but the problem was because of the “if
condition” in the
following method
getScriptObject( ):
if( scriptObject == null)
{
scriptObject = new MyPluginProvider( );
}
return scriptObject ;