Android API21 tns 2.3.0
我正在尝试使用nativescript-sdk-examples-ng
实现相机组件实施代码后,我在运行应用程序时遇到此错误 -
tns livesync ios --device 7a3c131309432ebae1a483f134ec8a4f8cdeecf4 --watch
您的应用程序将仅部署在由提供的索引或标识符指定的设备上。 从/Users/mohit/work/Mobile/native/finly-ng/hooks/before-prepare/nativescript-dev-typescript.js执行before-prepare钩子 找到了对等TypeScript 2.0.3 app / pages / expensephoto / expense-photo.component.ts(2,28):错误TS2307:找不到模块' image-asset'。
node_modules / nativescript-camera / nativescript-camera.d.ts(1,29):错误TS2307:找不到模块' image-asset'。
TypeScript编译器失败,退出代码为1
我该如何解决这个问题?
答案 0 :(得分:3)
您所指的示例应用程序正在使用tns-core-modules @ next,其中存在 image-asset 模块。该模块将与NativeScript 2.4.0一起正式发布,预计将在几天内发布。
同时,如果你想试验这个和其他非发布的功能,你可以像这样安装tns-core-modules的@next。
tns plugin remove tns-core-modules
tns plugin add tns-core-modules@next
现在您的应用程序可以访问image-asset。