try to hook the simpleprovider from the sdk with ignition
7.3 : I have the follwing error: "Error loading hook classes for module “simpleprovider”
Miss the line : xxxxxxxxxx.jar in the file :
example\Build\module-simpletagprovider
Hi,
You’re right, the module file isn’t correct. This line should be in there:
<jar scope="G">simpletagprovider.jar</jar>
Also, for what it’s worth, there’s a bug in the example. On line 130, instead of:
for (int i = currentTagCount; i > newCount; i++) {
it should be:
for (int i = currentTagCount; i > newCount; i--) {
Maybe we do these things to keep people sharp