Сбой сборки NativeScript tns после добавления плагина nativescript-ui-dataform - PullRequest
0 голосов
/ 04 февраля 2019

Я добавил плагин nativescript-ui-dataform в свой проект с помощью команды

tns plugin add nativescript-ui-dataform

Я проверил package.json после установки и заметил, что "nativescript-ui-dataform": "^3.10.0" был добавлен в проект.

Когда я собираю проект с tns build android, я получаю следующее исключение,

Exception in thread "main" java.lang.ClassNotFoundException: Class:
com.telerik.widget.autocomplete.ShowSuggestionListListener
        at org.nativescript.staticbindinggenerator.Generator.getClass(Generator.java:776)
        at org.nativescript.staticbindinggenerator.Generator.collectInterfaceMethods(Generator.java:703)
        at org.nativescript.staticbindinggenerator.Generator.getPublicApi(Generator.java:227)
        at org.nativescript.staticbindinggenerator.Generator.writeBinding(Generator.java:342)
        at org.nativescript.staticbindinggenerator.Generator.generateBinding(Generator.java:133)
        at org.nativescript.staticbindinggenerator.Generator.processRows(Generator.java:172)
        at org.nativescript.staticbindinggenerator.Generator.generateBindings(Generator.java:90)
        at org.nativescript.staticbindinggenerator.Generator.writeBindings(Generator.java:66)
        at org.nativescript.staticbindinggenerator.Main.main(Main.java:47)

и сборка не удалась с ошибкой,

FAILURE: Build failed with an exception.

любое предложение по вышеуказанной ошибкепочему возникает эта ошибка?

1 Ответ

0 голосов
/ 04 февраля 2019

Кажется, проблема в использовании правильной версии для nativescript-ui-autocomplete.Я уверен, что приведенные ниже версии совместимы друг с другом, так как они используются в последнем приложении Playground на сегодняшний день.

npm i nativescript-ui-dataform@3.9.1 nativescript-ui-autocomplete@3.10.3 --save

...