gpt4 book ai didi

java - 使用 Gluon 获取设备信息的问题

转载 作者:行者123 更新时间:2023-12-02 10:19:33 27 4
gpt4 key购买 nike

我计划获取手机的 IMEI,以便在我的应用程序中生成二维码或条形码。我在提问之前已经检查过问题。此外,我还查看了 gluon mobile 文档以获取更多详细信息。但它似乎没有解决我的问题。 ispresent() 内的 block 代码从未被执行过。这是我的代码

Services.get(DeviceService.class).ifPresent(deviceService -> {
label.setText("Modeld: "+"Test" );
label.setText("Model: "+ deviceService.getModel()+"\nSerial: "+ deviceService.getSerial());
});

构建.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 block ,您会注意到您的应用正在使用的插件列表或 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() 将为 null。

在这种情况下,您所需要做的就是将 device 插件添加到列表中:

device plugin

您的构建将具有:

jfxmobile {
downConfig {
version = '3.8.6'
plugins 'device', 'display', 'lifecycle', 'statusbar', 'storage'
}
...
}

请注意,您现在可以使用 Charm Down 3.8.6

关于java - 使用 Gluon 获取设备信息的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54439106/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com