ios - Pouchdb work with cordova-plugin-wkwebview-engine plugin? -


i have installed cordova-plugin-wkwebview-engine plugin in ionic v2 app. , install pouchdb plugin. working fine. have installed pouchdb, not installed sqlite plugin not set adapter.

i have tested in ios 10.2 - ipad

but ios 9 not working. show white screen.

this pouchdb code

    this._db = new pouchdb('test');     this.remote = 'http://192.168.53.150:5984/test';      let options = {         live: true,         retry: true     };      this._db.sync(this.remote, options); 

ionic info

cli packages: (/usr/local/lib/node_modules)

@ionic/cli-utils  : 1.9.1 ionic (ionic cli) : 3.9.1 

global packages:

cordova cli : 7.0.1 

local packages:

@ionic/app-scripts : 2.1.3 cordova platforms  : ios 4.4.0 ionic framework    : ionic-angular 3.6.0 

system:

ios-deploy : 1.9.1 node       : v6.11.0 npm        : 4.5.0 os         : macos sierra xcode      : xcode 8.3.2 build version 8e2002 

packagejson:

{     "name": "listtest",     "version": "0.0.1",     "author": "ionic framework",     "homepage": "http://ionicframework.com/",     "private": true,     "scripts": {         "clean": "ionic-app-scripts clean",         "build": "ionic-app-scripts build",         "lint": "ionic-app-scripts lint",         "ionic:build": "ionic-app-scripts build",         "ionic:serve": "ionic-app-scripts serve"     },     "dependencies": {         "@angular/common": "4.1.3",         "@angular/compiler": "4.1.3",         "@angular/compiler-cli": "4.1.3",         "@angular/core": "4.1.3",         "@angular/forms": "4.1.3",         "@angular/http": "4.1.3",         "@angular/platform-browser": "4.1.3",         "@angular/platform-browser-dynamic": "4.1.3",         "@ionic-native/core": "3.12.1",         "@ionic-native/splash-screen": "3.12.1",         "@ionic-native/status-bar": "3.12.1",         "@ionic/storage": "2.0.1",         "@types/lodash": "^4.14.50",         "cordova-ios": "^4.4.0",         "cordova-plugin-console": "^1.0.5",         "cordova-plugin-device": "^1.1.4",         "cordova-plugin-splashscreen": "^4.0.3",         "cordova-plugin-statusbar": "^2.2.2",         "cordova-plugin-whitelist": "^1.3.1",         "ionic-angular": "3.6.0",         "ionic-plugin-keyboard": "^2.2.1",         "ionicons": "3.0.0",         "pouchdb": "^6.3.4",         "pouchdb-find": "^6.3.4",         "rxjs": "5.4.0",         "sw-toolbox": "3.6.0",         "zone.js": "0.8.12"     },     "devdependencies": {         "@ionic/app-scripts": "^2.1.3",         "typescript": "2.3.4"     },     "description": "an ionic project",     "cordova": {         "plugins": {             "cordova-plugin-console": {},             "cordova-plugin-device": {},             "cordova-plugin-splashscreen": {},             "cordova-plugin-statusbar": {},             "cordova-plugin-whitelist": {},             "ionic-plugin-keyboard": {}         },         "platforms": [             "ios"         ]     } } 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -