Eclipse 如何获得gluon Android插件或.jar:磁强计、指南针、显示器、位置?

Eclipse 如何获得gluon Android插件或.jar:磁强计、指南针、显示器、位置?,eclipse,plugins,accelerometer,javafxports,gluon-mobile,Eclipse,Plugins,Accelerometer,Javafxports,Gluon Mobile,为了在EclipseNeon中安装组件,我们通常添加一个插件或.jar 或者,对于这些Android插件,我不知道该怎么做 在Eclipse市场中,我没有看到这些插件 在哪里可以买到 我的配置: 霓虹灯2 我的构建梯度(某些项目): 谢谢插件的当前版本是3.2.0。jfxmobile插件将设法下载插件及其平台版本。OK。我有Gluon工具2.4.0,包括e(fx)EclipseIDE2.3.0。你的意思是我只需要在构建gradle时将jfxmobile downconfig从4.0.0修改为3.

为了在EclipseNeon中安装组件,我们通常添加一个插件或.jar 或者,对于这些Android插件,我不知道该怎么做

在Eclipse市场中,我没有看到这些插件

在哪里可以买到

我的配置: 霓虹灯2

我的构建梯度(某些项目):


谢谢

插件的当前版本是3.2.0。jfxmobile插件将设法下载插件及其平台版本。OK。我有Gluon工具2.4.0,包括e(fx)EclipseIDE2.3.0。你的意思是我只需要在构建gradle时将jfxmobile downconfig从4.0.0修改为3.2.0?无需其他操作(添加库…)?此外,在java代码中,当我使用“Services.get(MagnetometerService.class).ifPresent(service->{…”)时,我必须添加使用该插件的导入类型?我有点迷茫:)感谢jfxmobile插件将为您添加插件jar、核心jar和平台jar。检查依赖项列表或控制台(在构建项目时使用
--info
)。至于导入,显然只需要导入您正在使用的类(
服务
磁强计服务
,…)。请注意,与任何其他依赖项一样,您也将拥有jar。José,您是否可以通过指示*获取其jar文件的URL*如何导入您提到的类来说明您的解释,而在我的项目的Java Buid路径中,我可以添加此jar文件,…非常感谢您的帮助lp
    buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            classpath 'org.javafxports:jfxmobile-plugin:1.3.2'
        }
    }

    dependencies {
        compile 'com.gluonhq:charm:4.1.0'    
    }

    jfxmobile {
        downConfig {
            version '4.0.0'
            plugins 'accelerometer', 'compass', 'device', 'orientation', 'storage', 'vibration', 'display', 'lifecycle', 'statusbar', 'position'
        }

android {
    compileSdkVersion = '23'
    buildToolsVersion = '25.0.1'
    androidSdk = 'C:/Users/pascal/AppData/Local/Android/sdk'
    manifest = 'src/android/AndroidManifest.xml'
}