#net::ERR_CACHEMISS
23 messages · Page 1 of 1 (latest)
⌛ This post has been reserved for your question.
Hey @mighty flame! Please use
/closeor theClose Postbutton above when you're finished. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
Can you show what the actual problem is?
where?
make sure you are declaring the INTERNET permission in your AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET"/>
What is your Android SDK version?
of your application
you could try the following code
if (18 < Build.VERSION.SDK_INT ){
//18 = JellyBean MR2, KITKAT=19
mWeb.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
}
also from the answers to that SO question
And remove any webView.getSettings().setBlockNetworkLoads (false); if you have it somewhere
what error are you getting?
What's shown in the logcat/run view?
check it?
it tells you why it crashed
Use a computer
if you want detaled information and debugging
writing code on mobile phones is...tedious
technically, you can also view logcats on mobile phones but you would need a computer with a USB connection to set it up AFAIK
where did you add that?
make sure it's before loadUrl
I guess