Android API21
tns 2.3.0

我正在尝试使用nativescript-sdk-examples-ng实现相机组件

实施代码后,在运行应用程序时出现此错误-


  tns livesync iOS-设备7a3c131309432ebae1a483f134ec8a4f8cdeecf4-手表
  
  您的应用程序将仅部署在提供的索引或标识符指定的设备上。
  从/Users/mohit/work/Mobile/native/finly-ng/hooks/before-prepare/nativescript-dev-typescript.js执行预准备挂钩
  找到对等的TypeScript 2.0.3
  app / pages / expensephoto / expense-photo.component.ts(2,28):错误TS2307:找不到模块“图像资产”。
  
  node_modules / nativescript-camera / nativescript-camera.d.ts(1,29):错误TS2307:找不到模块“图像资产”。
  
  TypeScript编译器失败,退出代码为1


我该如何解决?

最佳答案

您引用的示例应用程序使用的是tns-core-modules @ next,其中存在图像资产模块。该模块将与NativeScript 2.4.0一起正式发布,预计将在几天之内完成。

同时,如果您想尝试此功能以及其他未发布的功能,则可以像这样安装@next of tns-core-modules。

tns plugin remove tns-core-modules
tns plugin add tns-core-modules@next


现在,您的应用程序将可以访问图像资产。

08-17 13:49