Сбой сборки NativeScript tns после добавления плагина nativescript-ui-dataform
Я добавил плагин 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 ответ
Кажется, проблема в использовании правильной зависимой версии для nativescript-ui-autocomplete
, Я уверен, что приведенные ниже версии совместимы друг с другом, поскольку на сегодняшний день он используется в последнем приложении Playground.
npm i nativescript-ui-dataform@3.9.1 nativescript-ui-autocomplete@3.10.3 --save