Проблема с получением информации об устройстве с помощью Gluon

Я планирую получить IMEI телефона для генерации QR-кода или штрих-кода в моем приложении. Я должен проверить вопрос, прежде чем спрашивать. Более того, я также проверяю глюонные мобильные документы для более подробной информации. но, похоже, не решил мою проблему. Код блока внутри 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 при развертывании его на реальных устройствах

1 ответ

Решение

Если вы проверите 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'
    compile 'com.gluonhq:charm-down-plugin-display-desktop:3.8.5'
    compile 'com.gluonhq:charm-down-plugin-display-android:3.8.5'
    compile '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'
    compile 'com.gluonhq:charm-down-plugin-display-desktop:3.8.5'
    compile 'com.gluonhq:charm-down-plugin-display-android:3.8.5'
    compile '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 сейчас.

Другие вопросы по тегам