Hi,
I am trying to launch my Ionic 4 app in device livereload mode:
ionic cordova run android --l --c
When the is launched the inspector console shows this error:
index.js:43 Uncaught ReferenceError: global is not defined
at Object../node_modules/node-libs-browser/node_modules/buffer/index.js (index.js:43)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/safe-buffer/index.js (index.js:2)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/randombytes/browser.js (browser.js:15)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/crypto-browserify/index.js (index.js:3)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/@auth0/cordova/src/crypto.js (crypto.js:1)
at __webpack_require__ (bootstrap:84)
If add (window as any).global = window;
to polyfills.ts file I get the next error:
Uncaught ReferenceError: Buffer is not defined
at Object../node_modules/core-util-is/lib/util.js (util.js:103)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/readable-stream/lib/_stream_readable.js (_stream_readable.js:67)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/readable-stream/readable-browser.js (readable-browser.js:1)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/stream-browserify/index.js (index.js:28)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/hash-base/index.js (index.js:3)
at __webpack_require__ (bootstrap:84)
If add window.Buffer = window.Buffer || require('buffer').Buffer;
to polyfills.ts file I get the next error:
Uncaught ReferenceError: process is not defined
at Object../node_modules/readable-stream/lib/_stream_writable.js (_stream_writable.js:57)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/readable-stream/readable-browser.js (readable-browser.js:4)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/stream-browserify/index.js (index.js:28)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/hash-base/index.js (index.js:3)
at __webpack_require__ (bootstrap:84)
at Object../node_modules/md5.js/index.js (index.js:3)
at __webpack_require__ (bootstrap:84)
If I launch the app without livereload it works fine. ÂżCan someone help me?
This is my Ionic info:
Ionic:
Ionic CLI : 6.1.0 (/usr/local/lib/node_modules/@ionic/cli)
Ionic Framework : @ionic/angular 4.11.10
@angular-devkit/build-angular : 0.803.25
@angular-devkit/schematics : 8.1.3
@angular/cli : 8.3.25
@ionic/angular-toolkit : 2.2.0
Cordova:
Cordova CLI : 9.0.0 (cordova-lib@9.0.1)
Cordova Platforms : android 8.1.0
Cordova Plugins : cordova-plugin-ionic-keyboard 2.2.0, cordova-plugin-ionic-webview 4.1.3, (and 9 other plugins)
Utility:
cordova-res : 0.9.0
native-run : 0.3.0
System:
Android SDK Tools : 26.1.1 (/Users/myuser/Library/Android/sdk)
ios-deploy : 1.10.0
ios-sim : 6.1.2
NodeJS : v10.16.1 (/usr/local/bin/node)
npm : 6.9.0
OS : macOS Catalina
Xcode : Xcode 11.3.1 Build version 11C504
Thanks