我想使用一些“gluonhq charm down”服务,例如磁力计。
我不明白为什么 MagnetometerService 不能导入到我的 Java 类文件中。错误信息是
“无法解析导入 com.gluonhq.charm.down.plugins.accelerometer”。
之前,在 Eclipse Neon2 - Help -Available Software 站点中,我安装了 e(fx)clipse。您可以在安装详细信息中看到:
"e(fx)clipse - IDE - Update site" with http://download.eclipse.org/efxclipse/updates-released/2.4.0/site
注意:我已经安装了 GluonTools 2.4.0,包括 e(fx)mobile IDE 2.3.0。这是我的项目的 build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:2.4.0'
}
}
plugins {
id "com.github.hierynomus.license" version "0.13.1"
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'com.gluonapplication.GluonApplication'
jfxmobile {
downConfig {
version '4.0.0'
plugins 'accelerometer', 'compass', 'device', 'orientation', 'storage', 'vibration', 'display', 'lifecycle', 'statusbar', 'position'
}
android {
applicationPackage = 'com.gluonapplication'
manifest = 'src/android/AndroidManifest.xml'
androidSdk = 'C:/Users/pascal/AppData/Local/Android/sdk'
resDirectory = 'src/android/res'
compileSdkVersion = '23'
buildToolsVersion = '25.0.1'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
}
}