I'm making and android app that connects to some pages and via web scraping it extracts some content.
Yesterday I added a new server to get content but for some reason, it don't work, when starting next activity LogCat says
07-17 22:44:44.619 8393-8393/com.mixware.senpaimangareader W/ActivityThread﹕ Application com.mixware.senpaimangareader can be debugged on port 8100...
07-17 22:44:44.799 8408-8408/com.mixware.senpaimangareader W/Trace﹕ error opening trace file: No such file or directory (2)
07-17 22:44:44.989 8408-8408/com.mixware.senpaimangareader W/ActivityThread﹕ Application com.mixware.senpaimangareader can be debugged on port 8100...
Lots of times, and starts lots of procceses.
I've debuged the code with the new extraction, it is very low, but it works. Then the code that generates all problems is
public void nextActivity(final ArrayList<Manga> mangas) {
if (mangas == null || mangas.isEmpty()) (new getMangas(this)).execute("");
else {
Intent mIntent = new Intent(FullscreenActivity.this, MangaList.class);
mIntent.putExtra("lista", mangas);
startActivity(mIntent);
}
}
You can see the full code in https://github.com/mixtoism/SenpaiMangaReader the files are FullScreenActivity.java and getMangas.java