Me too.
But only if InAppBrowser has been called from the Home page.
The strange thing is that if I put the same code into a different page, it run.
Have you this code into the Home?
I’m building a simple app to make me sure of this, before to open a bug.
I’m using the same code: let url = 'https://www.match2grow.it' let browser = this.inApp.create(url,'_self','location: no, hardwareback: no, clearsessioncache: yes');
My shame. I didn’t read deeply. You have to code the option without blank, and = not : have to be used to specify the options.
You will not get any error, simply browser doesn’t start and if you put a browser.show() the app will crash…
So let browser = this.inApp.create(url,'_self','location= no,hardwareback=no,clearsessioncache=yes'); works