Android [JavaFxPorts] 的资产文件夹在哪里

Where is the asset folder for Android [JavaFxPorts]

我在开发要移植到 Android 的 Javafx 应用程序时使用了 Netbeans 的 Gluon 插件,我想在 Android 的资产文件夹中添加一些文件,但我找不到它?将资产文件放在哪里?

Gluon 插件创建一个 Gradle project to which the jfxmobile plugin is applied. Documentation on the jfxmobile plugin for Gradle can be found here: http://docs.gluonhq.com/javafxports/#_getting_started

默认的 android 资产目录是 src/android/assets,但可以通过在 build.gradle 文件中指定 assetsDirectory 属性 来更改:

jfxmobile {
    android {
        assetsDirectory = 'src/android/my_assets_dir'
    }
}