Ios development

Can I run my app installed on iPhone on Safari browser of same iPhone ?

if I comment out line

<plugin name="cordova-sqlite-storage" source="npm" version="5.1.1" />

my screen is displayed so there is some problem in this plugin usage but
I do not know how to debug what is the issue and what is going on inside app.

Tip : If you’re pasting code, html or config files, surround the code with triple back ticks (```), before the first line and after the last one. It will be formatted properly.

Do you mean as a web app, instead of compiled into a native app? Not if you’re using cordova-sqlite-storage. Plugins need to be compiled into a native app to be used.

Next step is to look for output in the Safari Console. The easiest way to view that is from Safari on the Desktop (using a Mac).

How can I look for output in the safari console to check native app on iphone ?

Lots of sources for this online. Here’s one:

It could be very basic thing but I am missing something here.

After I scan barcode from volt.build in iphone, my app is installed in iphone.
I am not getting that the app which is installed, how can I run it on safari browser ?

like in given blog there is a line
“4. Now on your iPad, open the website that you want to debug” but I am not debugging website here and need to debug app.

When you run a VoltBuilder (or Cordova) app on an iOS device, it loads a copy of the Safari browser within the app to show your html.

The Safari Web Inspector is able to see that embedded browser.

I see. So it means opening the app means opening safari browser.
Let me try debugging now with this information.

Thank you !