使用 Gluon 获取设备信息的问题
problem on get device information with Gluon
我计划获取 phone 的 IMEI,以便在我的应用程序中生成二维码或条形码。在提问之前我已经检查了问题。此外,我还查看了 gluon 移动文档以获取更多详细信息。但它似乎没有解决我的问题。 ispresent() 中的块代码从未被执行过。这是我的代码
Services.get(DeviceService.class).ifPresent(deviceService -> {
label.setText("Modeld: "+"Test" );
label.setText("Model: "+ deviceService.getModel()+"\nSerial: "+ deviceService.getSerial());
});
Build.gradles
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.16'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url
'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'fr.cashmag.GluonApplication'
dependencies {
compile 'com.gluonhq:charm:5.0.2'
}
jfxmobile {
downConfig {
version = '3.8.5'
// Do not edit the line below. Use Gluon Mobile Settings in your
project context menu instead
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}
android {
manifest = 'src/android/AndroidManifest.xml'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'fr.cashmag.**.*',
'com.gluonhq.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'org.glassfish.json.**.*'
]
}
}
当我将应用程序部署到真实设备时,logcat 应用程序似乎没有显示任何错误
如果您检查构建文件上的 downConfig
块,您会注意到插件列表或 Charm Down 服务,您的应用正在使用:
jfxmobile {
downConfig {
version = '3.8.5'
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}
...
}
jfxmobile
正在为每个插件添加核心工件及其平台实现:
dependencies {
compile 'com.gluonhq:charm:5.0.2'
compile 'com.gluonhq:charm-down-plugin-display:3.8.5'
desktopCompile 'com.gluonhq:charm-down-plugin-display-desktop:3.8.5'
androidCompile 'com.gluonhq:charm-down-plugin-display-android:3.8.5'
iosCompile 'com.gluonhq:charm-down-plugin-display-ios:3.8.5'
...
}
因为你也有charm
,它在其他一些服务中有传递依赖,比如device
,但只在核心工件中,所以你将添加:
dependencies {
compile 'com.gluonhq:charm:5.0.2'
compile 'com.gluonhq:charm-down-plugin-device:3.8.5'
...
compile 'com.gluonhq:charm-down-plugin-display:3.8.5'
desktopCompile 'com.gluonhq:charm-down-plugin-display-desktop:3.8.5'
androidCompile 'com.gluonhq:charm-down-plugin-display-android:3.8.5'
iosCompile 'com.gluonhq:charm-down-plugin-display-ios:3.8.5'
...
}
这就是为什么您的项目可以使用 DeviceService
。
但是您没有添加该服务的平台实现。所以当你在任何平台上 运行 时 Services.get(DeviceService.class).get()
将是空的。
在这种情况下,您需要做的就是将 device
插件添加到列表中:
您的构建将具有:
jfxmobile {
downConfig {
version = '3.8.6'
plugins 'device', 'display', 'lifecycle', 'statusbar', 'storage'
}
...
}
请注意,您现在可以使用 Charm Down 3.8.6
。
我计划获取 phone 的 IMEI,以便在我的应用程序中生成二维码或条形码。在提问之前我已经检查了问题。此外,我还查看了 gluon 移动文档以获取更多详细信息。但它似乎没有解决我的问题。 ispresent() 中的块代码从未被执行过。这是我的代码
Services.get(DeviceService.class).ifPresent(deviceService -> {
label.setText("Modeld: "+"Test" );
label.setText("Model: "+ deviceService.getModel()+"\nSerial: "+ deviceService.getSerial());
});
Build.gradles
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.16'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url
'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'fr.cashmag.GluonApplication'
dependencies {
compile 'com.gluonhq:charm:5.0.2'
}
jfxmobile {
downConfig {
version = '3.8.5'
// Do not edit the line below. Use Gluon Mobile Settings in your
project context menu instead
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}
android {
manifest = 'src/android/AndroidManifest.xml'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'fr.cashmag.**.*',
'com.gluonhq.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'org.glassfish.json.**.*'
]
}
}
当我将应用程序部署到真实设备时,logcat 应用程序似乎没有显示任何错误
如果您检查构建文件上的 downConfig
块,您会注意到插件列表或 Charm Down 服务,您的应用正在使用:
jfxmobile {
downConfig {
version = '3.8.5'
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}
...
}
jfxmobile
正在为每个插件添加核心工件及其平台实现:
dependencies {
compile 'com.gluonhq:charm:5.0.2'
compile 'com.gluonhq:charm-down-plugin-display:3.8.5'
desktopCompile 'com.gluonhq:charm-down-plugin-display-desktop:3.8.5'
androidCompile 'com.gluonhq:charm-down-plugin-display-android:3.8.5'
iosCompile 'com.gluonhq:charm-down-plugin-display-ios:3.8.5'
...
}
因为你也有charm
,它在其他一些服务中有传递依赖,比如device
,但只在核心工件中,所以你将添加:
dependencies {
compile 'com.gluonhq:charm:5.0.2'
compile 'com.gluonhq:charm-down-plugin-device:3.8.5'
...
compile 'com.gluonhq:charm-down-plugin-display:3.8.5'
desktopCompile 'com.gluonhq:charm-down-plugin-display-desktop:3.8.5'
androidCompile 'com.gluonhq:charm-down-plugin-display-android:3.8.5'
iosCompile 'com.gluonhq:charm-down-plugin-display-ios:3.8.5'
...
}
这就是为什么您的项目可以使用 DeviceService
。
但是您没有添加该服务的平台实现。所以当你在任何平台上 运行 时 Services.get(DeviceService.class).get()
将是空的。
在这种情况下,您需要做的就是将 device
插件添加到列表中:
您的构建将具有:
jfxmobile {
downConfig {
version = '3.8.6'
plugins 'device', 'display', 'lifecycle', 'statusbar', 'storage'
}
...
}
请注意,您现在可以使用 Charm Down 3.8.6
。