【问题标题】:sqlite porter "plugin_not_installed" on xcodexcode 上的 sqlite 搬运工“plugin_not_installed”
【发布时间】:2019-01-10 03:52:21
【问题描述】:
当我在设备 (iPhone 6) 中运行我的应用程序时,xcode 返回此错误:
警告:安装 SQLitePorter 插件:'ionic cordova plugin add
uk.co.workingedge.cordova.plugin.sqliteporter' 错误:
plugin_not_installed
【问题讨论】:
标签:
angularjs
xcode
cordova
ionic-framework
npm
【解决方案1】:
运行这个
ionic cordova plugin add uk.co.workingedge.cordova.plugin.sqliteporter
npm install --save @ionic-native/sqlite-porter
在 app.module.ts 中
import { SQLitePorter } from '@ionic-native/sqlite-porter';
providers: [
SQLitePorter
]