Document doc = Jsoup.connect(url).get();
If I run this code on Android, I get html code with 535 lines (length: 42599).
If I run this code in the sample desktop application, get the html code with 2050 lines (length: 292782, i.e. CORRECT). Same JSoup library.
Can someone explain to me why?
source share