Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Splash screen does not show up when product export

When i run my rcp application inside eclipse the splash screen is showing as it should. But when i export the product splash screen does not show up even if it is a new rcp application where i did not change splash screen at all

like image 347
ddarellis Avatar asked Nov 28 '22 11:11

ddarellis


1 Answers

Did you add the splash screen image to the build.properties file?

if not, the image is not part of your generated *.jar file

Example:

bin.includes = splash.bmp,\
               product.properties,\
               about.ini,\
               about.properties,\
               plugin_customization.ini,\
               META-INF/
like image 97
Markus Lausberg Avatar answered Dec 06 '22 00:12

Markus Lausberg