The application exported using the createApp task of Gradle macAppBundle does not render the fonts properly.
The application is a JavaFX
application developed using Griffon
. The interface of the application is JavaFX WebView which renders an html file. The html file imports css files pointing to several fonts. In other words, the WebView component imports several font files through a couple of css files. If I run the application using Gradle
execute/run task, the application renders the fonts properly. However, the exported application using Gradle macAppBundle createApp
does not render them. Thus, my best guess is that macAppBundle is the source of the problem.
I would appreciate if somebody can tell me how can I force Mac to allow the exported application accesses and renders the fonts.
Thanks.