Skip to content Skip to sidebar Skip to footer

Xml Parser Triggers Av Alert

I am developing an Android app which reads current currency exchange rates from an online XML file and parses it via w3c DOM. The file is located on my AWS S3 storage. The parser w

Solution 1:

I figured out why the AV didn't like my code. Apparently the XML parsing did not cause the problem after all...

In order to load the data I used an AsyncTask and did not implement any visual feedback (ProgessDialog) yet. This alone was enough for the AV alert.

Post a Comment for "Xml Parser Triggers Av Alert"