So I'm currently in the process of developing a reasonably large app for Android. I'm the only dev on it. I'm trying to be as organized as possible.
My app sends (or will send) requests to an API and it responds in XML. So I had to write parsers for the different request answers, and while doing the first parser (I used the sdks XmlPullParser) I thought it would be good if I didn't have to test that on the phone (build + it launches the app on the phone). I'm currently using Android studio.
So my question is:
How do I develop bits of my application that don't need the phone (like UI and user input...), but that still need the Android library (XmlPullParser for me) ?
thanks