Installation and Setup(4.2)
In the instructions below, you will prepare the development environment setup for your Desktop.
Download the devkit package to the PC where you will use a Desktop and do the DTK work by opening the Downloads dialog from the User Settings menu in Desktop Online, see https://infozone.atlassian.net/wiki/spaces/UEPE4D/pages/107349680, and clicking on the devkit_<version>.zip file.
Create an installation directory for the Devkit.
$ mkdir <devkit dir>Extract the devkit package to your installation directory <devkit dir>
$ unzip devkit_<version>.zipSetting Up the Environment Variables for the DTK.
In your development environment or build scripts you must include the devkit.jar in the class path. that was extracted above, in devkit_<version>/lib) in the class path.For example:
$ javac -cp <devkit dir>/lib/devkit.jar -sourcepath . com/mycompany/myplugin/*.java Where: com/mycompany/myplugin/, is your the code that you will build