0

I would like to open links in the same droidgap web view but not able to accomplish.

Solutions that I have tried already are..


In Android you can make external links to open inside the webview by setting

super.setBooleanProperty("loadInWebView", true);


<access origin="www.google.com"/>

to the phonegap.xml file.

Atif
  • 10,623
  • 20
  • 63
  • 96

1 Answers1

0

I'm not sure if this is your problem, but I believe you need the protocol on the origin property. So it should be

<access origin="http://www.google.com" />
Tom Pietrosanti
  • 4,184
  • 2
  • 24
  • 29