JavaFX language icon for OS X

I am trying to create my own OS X application package for a JavaFX application using IntelliJ IDEA 14. I installed "Artifact" with the native bundle option installed in dmg. This creates my own package, but I cannot find a way to change the application icon. How do I achieve this?

I tried to place it in the following directories based on other answers: src/main/deploy/packages/macosx/project_name.icns src/project_package_path/deploy/packages/project_name.icns

I cannot find the final information on the IntelliJ website about the icon change.

+4
source share
1 answer

I am testing the application in the application store and want to make sure that I installed the icon correctly.

javafx ant, :

icns package/macosx/project_name.icns

ant, .

:

fx: deploy.

ant .

: DMG _ [ Bundle] ( /macosx/Info.plist ) [] ( /macosx/project _name.icns )

0

All Articles