...
Now we need to add the native registry support to install.xml, see also Windows Registry Access:
| Code Block |
|---|
<natives> <native type="3rdparty" name="COIOSHelper.dll" stage="both"> <os family="windows"/> </native> <native type="3rdparty" name="COIOSHelper_x64.dll" stage="both"> <os family="windows"/> </native> <natives> |
The DLL file should be placed in ${basedir}/bin/native/3rdparty. The stage both marks this dll not only to be put into the installation jar file but also to be put into the uninstaller jar file. This is automatically performed by the packager and installation.
...