Reputation: 1
My AndroidManifest.xml file contains the Permission:
<uses-permission android:name="permission.android.INTERNET" />
and my webview has no problem displaying a custom error page but wont load Urls like my website
Upvotes: 0
Views: 64
Reputation: 82563
It should be
<uses-permission android:name="android.permission.INTERNET" />
instead of
<uses-permission android:name="permission.android.INTERNET" />
Upvotes: 2