1

The default Browser application on my HTC Hero v1.5 just keeps coming up with the standard "Web page not available" page when I try to display html page from my android application

Sandip
  • 593
  • 4
  • 20

1 Answers1

1

You need add the INTERNET permission in you Manifest file:

<manifest xlmns:android...>
 ...
 <uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>

more info here:

http://developer.android.com/guide/topics/manifest/manifest-intro.html

hcarrasko
  • 2,320
  • 6
  • 33
  • 45