当前位置 : 主页 > 手机开发 > cordova >

cordova – 离子文件加密

来源:互联网 收集:自由互联 发布时间:2021-06-10
我正在尝试使用与Cordova Safe插件配合使用的Ionic Native File Encryption插件. 但是,在我添加插件并尝试运行(即使不在我的代码中使用它)它使用离子cordova运行android,我得到此错误: BUILD FAILE
我正在尝试使用与Cordova Safe插件配合使用的Ionic Native File Encryption插件.

但是,在我添加插件并尝试运行(即使不在我的代码中使用它)它使用离子cordova运行android,我得到此错误:

BUILD FAILED in 5s
at ChildProcess.whenDone (C:\Users\User\Ionic\App\platforms\android\cordova\node_modules\cordova-common\src\superspawn.js:169:23)
at emitTwo (events.js:126:13)
at ChildProcess.emit (events.js:214:7)
at maybeClose (internal/child_process.js:925:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)
(node:70968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)

问题是什么?

我也尝试过安装CordovaSafe插件,但是我得到了和你一样的错误.

经过一段时间的尝试,我发现如果你将你的cordova降级到以前的版本,问题就可以解决了.

试试跑步

npm uninstall cordova

然后

npm install -g cordova@7.1.0

在降级您的cordova版本并再次使用CordovaSafe插件创建项目后,请告诉我它是否适合您.

网友评论