Access-Control-Allow-Origin Error At Android 4.1
Solution 1:
you need to do something like
if (Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN)
wv.getSettings().setAllowUniversalAccessFromFileURLs(true);
Solution 2:
@I am Developer and the others who are facing the same problem.
Slushis solution works fine. But if you want to compile against and support systems below API11 you have to add the following:
if (Build.VERSION.SDK_INT >= 16) {
Class<?> clazz = webView.getSettings().getClass();
Method method = clazz.getMethod("setAllowUniversalAccessFromFileURLs", boolean.class);
if (method != null) {
method.invoke(webView.getSettings(), true);
}
}
This will load and invoke the method at runtime, so you can compile with e.g. Android 2.3.3.