What is the preferred way to load a remote url as the main page in Phonegap 3 (Cordova 3.1.0+)?
I find that if I just set the tag to the external URL, it will just open in a new Chrome window (on Android.)
If I use the approach described in the accepted answer here then I get the same behaviour - opens in a new window.
Also, I have found that I cannot open self-signed https links at all. If I implement the fix described here then I get a timeout, increasing the timeout value of loadUrlTimeoutValue just results in the app waiting indefinitely.
Ultimately, what I want is to be able to open a self-signed URL directly into an android application. This app does not need to be on the Play store, and does not need to be concerned with the implications of blinding accepting self-signed certs. How can I achieve this?