pluginEntryTable error

Project:
• Compiles successfully
• Runs successfully from the IDE
• Make an inno installer
• Copy installer to a different computer
• Run installer
• Run app

Runtime Error: Common\plugin.cpp:1002
Failure Condition: plginEntryTable.GetEntry(…
Can’t find plugin method _GZZipfFile._init

Anyone have any idea?

Clear build folder. Then try again.
Something is messed up and a required plugin DLL from the internal GZIP plugin is not copied.

Thank you Christian.

Emptied Builds folder.
Built app.
Created installer.
Moved to second computer.
Same problem,

What happens if you just zip/unzip and try and run on 2nd computer?

Your installer includes all the DLLs in the Libs folder?
And the DLLs in the same folder as the exe file?

Check if the installer is adding all the DLLs from the Libs folder and putting them in the same folder as the exe file. If it still doesn’t work, make sure no plugin files are missing or skipped during the build

I have figured out what the problem is.

In setting up the inno script on the adding folders step and added the libs and resources folders separately. What inno then does is use the contents of the folders but not the folders themselves. This means the path used by Xojo to locate things simply isn’t there.

I set up an inno script including the .exe and the folder containing the libs and resources folders, and things are happy.

I think the docs could be a bit clearer on this.

Thanks to everyone who offered help.