Панель запуска приложений - Объект (...) не является функцией - PullRequest
0 голосов
/ 05 мая 2020

Я использую плагин для запуска приложений в ioni c, и я столкнулся с этой проблемой, с которой я застрял.

{
  "name": "tracified-wallet",
  "version": "1.0.0",
  "author": "Ionic Framework",
  "homepage": "http://ionicframework.com/",
  "private": true,
  "scripts": {
    "start": "ionic-app-scripts serve",
    "clean": "ionic-app-scripts clean",
    "build": "ionic-app-scripts build",
    "lint": "ionic-app-scripts lint"
  },
  "dependencies": {
    "@angular/animations": "5.2.11",
    "@angular/common": "5.2.11",
    "@angular/compiler": "5.2.11",
    "@angular/compiler-cli": "5.2.11",
    "@angular/core": "5.2.11",
    "@angular/forms": "5.2.11",
    "@angular/http": "5.2.11",
    "@angular/platform-browser": "5.2.11",
    "@angular/platform-browser-dynamic": "5.2.11",
    "@ionic-native/app-launcher": "^5.24.0",
    "@ionic-native/camera": "4.3.3",
    "@ionic-native/clipboard": "^4.20.0",
    "@ionic-native/code-push": "^4.20.0",
    "@ionic-native/core": "~4.15.0",
    "@ionic-native/device": "^5.2.0",
    "@ionic-native/file": "^4.20.0",
    "@ionic-native/network": "^4.18.0",
    "@ionic-native/splash-screen": "~4.15.0",
    "@ionic-native/status-bar": "~4.15.0",
    "@ngx-translate/core": "8.0.0",
    "@ngx-translate/http-loader": "^2.0.0",
    "@types/crypto-js": "^3.1.43",
    "@types/jsonwebtoken": "^8.3.0",
    "@types/stellar-sdk": "^0.10.4",
    "build": "0.1.4",
    "code-push": "^3.0.1",
    "cordova-android": "^8.0.0",
    "cordova-browser": "6.0.0",
    "cordova-clipboard": "1.3.0",
    "cordova-plugin-code-push": "^1.12.0",
    "cordova-plugin-device": "^2.0.2",
    "cordova-plugin-dialogs": "^2.0.2",
    "cordova-plugin-file": "^6.0.2",
    "cordova-plugin-file-transfer": "^1.7.1",
    "cordova-plugin-ionic-keyboard": "^2.1.3",
    "cordova-plugin-ionic-webview": "^2.2.5",
    "cordova-plugin-splashscreen": "^5.0.2",
    "cordova-plugin-statusbar": "^2.4.2",
    "cordova-plugin-whitelist": "^1.3.3",
    "cordova-plugin-zip": "^3.1.0",
    "crypto-js": "^3.1.9-1",
    "duration": "^0.2.2",
    "hsimp-purescript": "^0.1.1",
    "ionic-angular": "3.9.2",
    "ionic-logger-new": "^0.4.9",
    "ionic-selectable": "^3.2.0",
    "ionicons": "3.0.0",
    "jsonwebtoken": "^8.4.0",
    "localforage": "^1.7.3",
    "ngx-device-detector": "^1.3.5",
    "node-gyp": "^3.8.0",
    "rebuild": "^0.1.2",
    "rxjs": "5.5.11",
    "stellar-sdk": "^0.11.0",
    "sw-toolbox": "3.6.0",
    "zone.js": "0.8.26"
  },
  "devDependencies": {
    "@ionic/app-scripts": "^3.2.4",
    "typescript": "~2.6.2"
  },
  "description": "An Ionic project",
  "cordova": {
    "plugins": {
      "cordova-plugin-whitelist": {},
      "cordova-plugin-statusbar": {},
      "cordova-plugin-device": {},
      "cordova-plugin-splashscreen": {},
      "cordova-plugin-ionic-webview": {
        "ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
      },
      "cordova-plugin-ionic-keyboard": {},
      "cordova-clipboard": {},
      "cordova-plugin-file": {},
      "cordova-plugin-file-transfer": {},
      "cordova-plugin-code-push": {},
      "cordova-plugin-zip": {},
      "cordova-plugin-app-launcher": {}
    },
    "platforms": [
      "browser",
      "android"
    ]
  },
  "config": {
    "ionic_webpack": "./config/webpack.config.js"
  }
}

Выше мой файл package. json. Я застрял в этом и не могу двигаться дальше в своем проекте. Я все перебрал и решения не нашел. Моя версия Ioni c - 5.4.4

Буду признателен, если кто-нибудь поможет мне в этом

...