Sandip
Sandip

Reputation: 593

"Web page not available"

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

Upvotes: 1

Views: 284

Answers (1)

hcarrasko
hcarrasko

Reputation: 2352

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

Upvotes: 1

Related Questions